Merge pull request #41 from mks14stdio/fix_window

Fix Fullscreen
This commit is contained in:
MihailRis 2023-12-09 18:37:15 +03:00 committed by GitHub
commit a65bd020f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View File

@ -71,10 +71,18 @@ bool Window::isMaximized() {
return glfwGetWindowAttrib(window, GLFW_MAXIMIZED); return glfwGetWindowAttrib(window, GLFW_MAXIMIZED);
} }
bool Window::isFocused()
{
return glfwGetWindowAttrib(window, GLFW_FOCUSED);
}
void window_size_callback(GLFWwindow*, int width, int height) { void window_size_callback(GLFWwindow*, int width, int height) {
if (Window::isFocused()) {
glViewport(0, 0, width, height); glViewport(0, 0, width, height);
Window::width = width; Window::width = width;
Window::height = height; Window::height = height;
}
if (!Window::isFullscreen() && !Window::isMaximized()) { if (!Window::isFullscreen() && !Window::isMaximized()) {
Window::getSettings()->width = width; Window::getSettings()->width = width;
Window::getSettings()->height = height; Window::getSettings()->height = height;

View File

@ -38,6 +38,7 @@ public:
static void toggleFullscreen(); static void toggleFullscreen();
static bool isFullscreen(); static bool isFullscreen();
static bool isMaximized(); static bool isMaximized();
static bool isFocused();
static void pushScissor(glm::vec4 area); static void pushScissor(glm::vec4 area);
static void popScissor(); static void popScissor();