glfw/tests
Camilla Löwy 56a4cb0a3a Add runtime platform selection
This adds compile-time support for multiple platforms and runtime
detection of them.  Window system related platform functions are now
called from shared code via the function pointer struct _GLFWplatform.

The timer, thread and module loading platform functions are still called
directly by name and the implementation chosen at link-time.  These
functions are the same for any backend on a given OS, including the Null
backend.

The platforms are now enabled via CMake dependent options following the
GLFW_BUILD_<platform> pattern instead of a mix of automagic and ad-hoc
option names.  There is no longer any option for the Null backend as it
is now always enabled.

Much of the struct stitching work in platform.h was based on an earlier
experimental branch for runtime platform selection by @ronchaine.

Every platform function related to windows, contexts, monitors, input,
event processing and Vulkan have been renamed so that multiple sets of
them can exist without colliding.  Calls to these are now routed through
the _glfw.platform struct member.  These changes makes up most of this
commit.

For Wayland and X11 the client library loading and display creation is
used to detect a running compositor/server.  The XDG_SESSION_TYPE
environment variable is ignored for now, as X11 is still by far the more
complete implementation.

Closes #1655
Closes #1958
2021-10-13 21:47:11 +02:00
..
allocator.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
clipboard.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
CMakeLists.txt Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
cursor.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
empty.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
events.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
gamma.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
glfwinfo.c Add runtime platform selection 2021-10-13 21:47:11 +02:00
icon.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
iconify.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
inputlag.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
joysticks.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
monitors.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
msaa.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
reopen.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
tearing.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
threads.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
timeout.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
title.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
triangle-vulkan.c Update glad2 and switch to header-only version 2021-08-26 16:03:40 +02:00
window.c Fix string buffer sizes in window test 2021-10-05 18:11:25 +02:00