From 06a339f9f08827001eb77c6b0216c0fb8237d78d Mon Sep 17 00:00:00 2001 From: Egor Date: Sat, 3 Feb 2018 12:35:03 -0800 Subject: Fixed another MacOS build issue --- Graphics/GraphicsEngineOpenGL/src/SwapChainGLImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Graphics/GraphicsEngineOpenGL') diff --git a/Graphics/GraphicsEngineOpenGL/src/SwapChainGLImpl.cpp b/Graphics/GraphicsEngineOpenGL/src/SwapChainGLImpl.cpp index 4754b93d..6b392943 100644 --- a/Graphics/GraphicsEngineOpenGL/src/SwapChainGLImpl.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/SwapChainGLImpl.cpp @@ -56,8 +56,8 @@ SwapChainGLImpl::SwapChainGLImpl(IReferenceCounters *pRefCounters, m_SwapChainDesc.Height = GLContext.GetScreenHeight(); #elif defined(PLATFORM_MACOS) //Set dummy width and height until resize is called by the app - m_SwapChainAttribs.Width = 1024; - m_SwapChainAttribs.Height = 768; + m_SwapChainDesc.Width = 1024; + m_SwapChainDesc.Height = 768; #else # error Unsupported platform #endif -- cgit v1.2.3