Examples: standardized all examples to have a base window size of 1280x800.

This commit is contained in:
ocornut
2025-09-15 16:34:36 +02:00
parent 22a6a83c54
commit e044d99710
17 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ int main(int, char**)
// Create window with graphics context
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
GLFWwindow* window = glfwCreateWindow(1280, 720, "Dear ImGui GLFW+Metal example", nullptr, nullptr);
GLFWwindow* window = glfwCreateWindow(1280, 800, "Dear ImGui GLFW+Metal example", nullptr, nullptr);
if (window == nullptr)
return 1;