API to set layer shell config for existing window

This commit is contained in:
Kovid Goyal
2025-04-22 11:08:13 +05:30
parent db5b691545
commit c1a9873530
10 changed files with 46 additions and 1 deletions

View File

@@ -1903,6 +1903,11 @@ void _glfwPlatformDestroyWindow(_GLFWwindow* window)
window->ns.object = nil;
}
bool _glfwPlatformSetLayerShellConfig(_GLFWwindow* window, const GLFWLayerShellConfig *value) {
(void)window; (void)value;
return false;
}
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
{
if (!title) return;