glfw: Fixed toggle fullscreen.

This commit is contained in:
Branimir Karadžić
2017-05-25 21:13:54 -07:00
parent dbceaf702e
commit 993f6b5ff9

View File

@@ -28,8 +28,9 @@
#include <bgfx/platform.h>
#include <bx/thread.h>
#include <bx/handlealloc.h>
#include <bx/thread.h>
#include <bx/mutex.h>
#include <tinystl/string.h>
#include "dbg.h"
@@ -533,17 +534,25 @@ namespace entry
case GLFW_WINDOW_TOGGLE_FULL_SCREEN:
{
GLFWwindow* window = m_windows[msg->m_handle.idx];
if (glfwGetWindowMonitor(window))
if (glfwGetWindowMonitor(window) )
{
int width, height;
glfwGetWindowSize(window, &width, &height);
glfwSetWindowMonitor(window, NULL, 0, 0, width, height, 0);
glfwSetWindowMonitor(window
, NULL
, m_oldX
, m_oldY
, m_oldWidth
, m_oldHeight
, 0
);
}
else
{
GLFWmonitor* monitor = glfwGetPrimaryMonitor();
if (NULL != monitor)
{
glfwGetWindowPos(window, &m_oldX, &m_oldY);
glfwGetWindowSize(window, &m_oldWidth, &m_oldHeight);
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
glfwSetWindowMonitor(window
, monitor
@@ -624,6 +633,11 @@ namespace entry
bx::SpScUnboundedQueueT<Msg> m_msgs;
int32_t m_oldX;
int32_t m_oldY;
int32_t m_oldWidth;
int32_t m_oldHeight;
double m_scrollPos;
};