diff --git a/README.md b/README.md index 52306188..dfcce0a9 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,7 @@ information on what to include when reporting a bug. - [X11] Bugfix: Running without a WM could trigger an assert (#2593,#2601,#2631) - [Null] Added Vulkan 'window' surface creation via `VK_EXT_headless_surface` - [Null] Added EGL context creation on Mesa via `EGL_MESA_platform_surfaceless` + - [EGL] Added `GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12` init hint for D3D11on12 support - [EGL] Allowed native access on Wayland with `GLFW_CONTEXT_CREATION_API` set to `GLFW_NATIVE_CONTEXT_API` (#2518) diff --git a/docs/intro.md b/docs/intro.md index 7aa75e31..6064f94a 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -109,8 +109,8 @@ request when using OpenGL ES and EGL via [ANGLE][]. If the requested platform type is unavailable, ANGLE will use its default. Possible values are one of `GLFW_ANGLE_PLATFORM_TYPE_NONE`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGL`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGLES`, `GLFW_ANGLE_PLATFORM_TYPE_D3D9`, -`GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_VULKAN` and -`GLFW_ANGLE_PLATFORM_TYPE_METAL`. +`GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12`, +`GLFW_ANGLE_PLATFORM_TYPE_VULKAN` and `GLFW_ANGLE_PLATFORM_TYPE_METAL`. [ANGLE]: https://chromium.googlesource.com/angle/angle/ @@ -159,7 +159,7 @@ Initialization hint | Default value | Supported v -------------------------------- | ------------------------------- | ---------------- @ref GLFW_PLATFORM | `GLFW_ANY_PLATFORM` | `GLFW_ANY_PLATFORM`, `GLFW_PLATFORM_WIN32`, `GLFW_PLATFORM_COCOA`, `GLFW_PLATFORM_WAYLAND`, `GLFW_PLATFORM_X11` or `GLFW_PLATFORM_NULL` @ref GLFW_JOYSTICK_HAT_BUTTONS | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` -@ref GLFW_ANGLE_PLATFORM_TYPE | `GLFW_ANGLE_PLATFORM_TYPE_NONE` | `GLFW_ANGLE_PLATFORM_TYPE_NONE`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGL`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGLES`, `GLFW_ANGLE_PLATFORM_TYPE_D3D9`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_VULKAN` or `GLFW_ANGLE_PLATFORM_TYPE_METAL` +@ref GLFW_ANGLE_PLATFORM_TYPE | `GLFW_ANGLE_PLATFORM_TYPE_NONE` | `GLFW_ANGLE_PLATFORM_TYPE_NONE`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGL`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGLES`, `GLFW_ANGLE_PLATFORM_TYPE_D3D9`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12`, `GLFW_ANGLE_PLATFORM_TYPE_VULKAN` or `GLFW_ANGLE_PLATFORM_TYPE_METAL` @ref GLFW_COCOA_CHDIR_RESOURCES | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` @ref GLFW_COCOA_MENUBAR | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` @ref GLFW_WAYLAND_LIBDECOR | `GLFW_WAYLAND_PREFER_LIBDECOR` | `GLFW_WAYLAND_PREFER_LIBDECOR` or `GLFW_WAYLAND_DISABLE_LIBDECOR` diff --git a/docs/news.md b/docs/news.md index 148d0871..cc4689c0 100644 --- a/docs/news.md +++ b/docs/news.md @@ -14,6 +14,9 @@ values over 8. For compatibility with older versions, the @ref GLFW_UNLIMITED_MOUSE_BUTTONS input mode needs to be set to make use of this. +On Windows 10 or newer it is now possible to specify ANGLE's D3D11on12 +backend via the @ref GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12 init hint. + ## Caveats {#caveats} ## Deprecations {#deprecations} @@ -29,6 +32,7 @@ this. ### New constants {#new_constants} - @ref GLFW_UNLIMITED_MOUSE_BUTTONS +- @ref GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12 ## Release notes for earlier versions {#news_archive} diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 79b06288..024b2cde 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1174,6 +1174,7 @@ extern "C" { #define GLFW_ANGLE_PLATFORM_TYPE_OPENGLES 0x00037003 #define GLFW_ANGLE_PLATFORM_TYPE_D3D9 0x00037004 #define GLFW_ANGLE_PLATFORM_TYPE_D3D11 0x00037005 +#define GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12 0x00037006 #define GLFW_ANGLE_PLATFORM_TYPE_VULKAN 0x00037007 #define GLFW_ANGLE_PLATFORM_TYPE_METAL 0x00037008 diff --git a/src/internal.h b/src/internal.h index 4f097aa8..35f97a92 100644 --- a/src/internal.h +++ b/src/internal.h @@ -110,6 +110,7 @@ typedef const GLubyte* (APIENTRY * PFNGLGETSTRINGPROC)(GLenum); typedef void (APIENTRY * PFNGLGETINTEGERVPROC)(GLenum,GLint*); typedef const GLubyte* (APIENTRY * PFNGLGETSTRINGIPROC)(GLenum,GLuint); +#define EGL_TRUE 1 #define EGL_SUCCESS 0x3000 #define EGL_NOT_INITIALIZED 0x3001 #define EGL_BAD_ACCESS 0x3002 @@ -185,6 +186,7 @@ typedef const GLubyte* (APIENTRY * PFNGLGETSTRINGIPROC)(GLenum,GLuint); #define EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE 0x3208 #define EGL_PLATFORM_ANGLE_TYPE_VULKAN_ANGLE 0x3450 #define EGL_PLATFORM_ANGLE_TYPE_METAL_ANGLE 0x3489 +#define EGL_PLATFORM_ANGLE_D3D11ON12_ANGLE 0x3488 #define EGL_PLATFORM_ANGLE_NATIVE_PLATFORM_TYPE_ANGLE 0x348f #define EGL_PLATFORM_SURFACELESS_MESA 0x31dd diff --git a/src/win32_window.c b/src/win32_window.c index d014944b..7a235f33 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -2463,8 +2463,18 @@ const char* _glfwGetClipboardStringWin32(void) return _glfw.win32.clipboardString; } +#define SET_ATTRIB(a, v) \ +{ \ + assert(((size_t) index + 1) < sizeof(tmp_attribs) / sizeof(tmp_attribs[0])); \ + tmp_attribs[index++] = a; \ + tmp_attribs[index++] = v; \ +} + EGLenum _glfwGetEGLPlatformWin32(EGLint** attribs) { + EGLint tmp_attribs[8]; + int index = 0; + if (_glfw.egl.ANGLE_platform_angle) { int type = 0; @@ -2483,6 +2493,11 @@ EGLenum _glfwGetEGLPlatformWin32(EGLint** attribs) type = EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE; else if (_glfw.hints.init.angleType == GLFW_ANGLE_PLATFORM_TYPE_D3D11) type = EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE; + else if (_glfw.hints.init.angleType == GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12) + { + type = EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE; + SET_ATTRIB(EGL_PLATFORM_ANGLE_D3D11ON12_ANGLE, EGL_TRUE); + } } if (_glfw.egl.ANGLE_platform_angle_vulkan) @@ -2493,10 +2508,10 @@ EGLenum _glfwGetEGLPlatformWin32(EGLint** attribs) if (type) { - *attribs = _glfw_calloc(3, sizeof(EGLint)); - (*attribs)[0] = EGL_PLATFORM_ANGLE_TYPE_ANGLE; - (*attribs)[1] = type; - (*attribs)[2] = EGL_NONE; + SET_ATTRIB(EGL_PLATFORM_ANGLE_TYPE_ANGLE, type); + SET_ATTRIB(EGL_NONE, EGL_NONE); + *attribs = _glfw_calloc(index, sizeof(EGLint)); + memcpy(*attribs, tmp_attribs, index * sizeof(EGLint)); return EGL_PLATFORM_ANGLE_ANGLE; } } @@ -2504,6 +2519,8 @@ EGLenum _glfwGetEGLPlatformWin32(EGLint** attribs) return 0; } +#undef SET_ATTRIB + EGLNativeDisplayType _glfwGetEGLNativeDisplayWin32(void) { return GetDC(_glfw.win32.helperWindowHandle); diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f81cfeb9..099ba8f4 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -23,7 +23,7 @@ add_executable(allocator allocator.c ${GLAD_GL}) add_executable(clipboard clipboard.c ${GETOPT} ${GLAD_GL}) add_executable(events events.c ${GETOPT} ${GLAD_GL}) add_executable(msaa msaa.c ${GETOPT} ${GLAD_GL}) -add_executable(glfwinfo glfwinfo.c ${GETOPT} ${GLAD_GL} ${GLAD_VULKAN}) +add_executable(glfwinfo glfwinfo.c glfwinfo.manifest ${GETOPT} ${GLAD_GL} ${GLAD_VULKAN}) add_executable(iconify iconify.c ${GETOPT} ${GLAD_GL}) add_executable(monitors monitors.c ${GETOPT} ${GLAD_GL}) add_executable(reopen reopen.c ${GLAD_GL}) diff --git a/tests/glfwinfo.c b/tests/glfwinfo.c index 12acbccc..253a89bc 100644 --- a/tests/glfwinfo.c +++ b/tests/glfwinfo.c @@ -61,6 +61,7 @@ #define ANGLE_TYPE_OPENGLES "es" #define ANGLE_TYPE_D3D9 "d3d9" #define ANGLE_TYPE_D3D11 "d3d11" +#define ANGLE_TYPE_D3D11ON12 "d3d11on12" #define ANGLE_TYPE_VULKAN "vk" #define ANGLE_TYPE_METAL "mtl" @@ -129,6 +130,7 @@ static void usage(void) ANGLE_TYPE_OPENGLES ", " ANGLE_TYPE_D3D9 ", " ANGLE_TYPE_D3D11 ", " + ANGLE_TYPE_D3D11ON12 ", " ANGLE_TYPE_VULKAN " or " ANGLE_TYPE_METAL ")\n"); printf(" --graphics-switching request macOS graphics switching\n"); @@ -638,6 +640,8 @@ int main(int argc, char** argv) angle_type = GLFW_ANGLE_PLATFORM_TYPE_D3D9; else if (strcmp(optarg, ANGLE_TYPE_D3D11) == 0) angle_type = GLFW_ANGLE_PLATFORM_TYPE_D3D11; + else if (strcmp(optarg, ANGLE_TYPE_D3D11ON12) == 0) + angle_type = GLFW_ANGLE_PLATFORM_TYPE_D3D11ON12; else if (strcmp(optarg, ANGLE_TYPE_VULKAN) == 0) angle_type = GLFW_ANGLE_PLATFORM_TYPE_VULKAN; else if (strcmp(optarg, ANGLE_TYPE_METAL) == 0) diff --git a/tests/glfwinfo.manifest b/tests/glfwinfo.manifest new file mode 100644 index 00000000..8db331d3 --- /dev/null +++ b/tests/glfwinfo.manifest @@ -0,0 +1,40 @@ + + + + GLFW context creation and information tool + + + + + + + + + + + + + + + + + + + + + + +