mirror of
https://github.com/glfw/glfw.git
synced 2025-06-08 00:34:56 +00:00
fixes
This commit is contained in:
parent
5591b9043c
commit
b6187626ab
@ -73,6 +73,7 @@ GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
|
|||||||
_glfwCreateWindowNull,
|
_glfwCreateWindowNull,
|
||||||
_glfwDestroyWindowNull,
|
_glfwDestroyWindowNull,
|
||||||
_glfwSetWindowTitleNull,
|
_glfwSetWindowTitleNull,
|
||||||
|
_glfwSetWindowTitlebarColorNull,
|
||||||
_glfwSetWindowIconNull,
|
_glfwSetWindowIconNull,
|
||||||
_glfwGetWindowPosNull,
|
_glfwGetWindowPosNull,
|
||||||
_glfwSetWindowPosNull,
|
_glfwSetWindowPosNull,
|
||||||
|
@ -529,7 +529,7 @@ GLFWAPI void glfwSetWindowTitlebarColor(GLFWwindow* handle, int r, int g, int b,
|
|||||||
assert(window != NULL);
|
assert(window != NULL);
|
||||||
assert(window != NULL);
|
assert(window != NULL);
|
||||||
_GLFW_REQUIRE_INIT();
|
_GLFW_REQUIRE_INIT();
|
||||||
_glfw.platform.setWindowTitlebarColor(handle, r,g,b,a);
|
_glfw.platform.setWindowTitlebarColor(window, r,g,b,a);
|
||||||
}
|
}
|
||||||
GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
|
GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
|
||||||
int count, const GLFWimage* images)
|
int count, const GLFWimage* images)
|
||||||
|
Loading…
Reference in New Issue
Block a user