commit
a65bd020f9
@ -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;
|
||||||
|
|||||||
@ -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();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user