1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-29 01:24:11 +01:00

[build] Fix native GLFW build

Fixes an undefined reference to `glfwGetWindowAttrib` when building with
GLFW support enabled.
This commit is contained in:
Randy Eckenrode 2024-11-11 15:42:17 -05:00 committed by Philip Rebohle
parent e6209d28cd
commit 8dc1fe1262

View File

@ -5,6 +5,7 @@ GLFW_PROC(GLFWmonitor*, glfwGetPrimaryMonitor, (void))
GLFW_PROC(const char**, glfwGetRequiredInstanceExtensions, (uint32_t*))
GLFW_PROC(const GLFWvidmode*, glfwGetVideoMode, (GLFWmonitor*))
GLFW_PROC(const GLFWvidmode*, glfwGetVideoModes, (GLFWmonitor*, int*))
GLFW_PROC(int, glfwGetWindowAttrib, (GLFWwindow*, int))
GLFW_PROC(void, glfwGetWindowSize, (GLFWwindow*, int*, int*))
GLFW_PROC(void, glfwSetWindowMonitor, (GLFWwindow*, GLFWmonitor*, int, int, int, int, int))
GLFW_PROC(void, glfwSetWindowSize, (GLFWwindow*, int, int))