mirror of https://github.com/AxioDL/boo.git
WindowWin32: Move variable into ifdef
Avoids the need to have a separate ifdef path to silence an unused variable warning.
This commit is contained in:
parent
23cdae9e97
commit
0c5f0e0d26
|
@ -859,18 +859,17 @@ public:
|
||||||
|
|
||||||
m_hwnd = CreateWindowW(L"BooWindow", title.data(), WS_OVERLAPPEDWINDOW, r.left, r.top, r.right - r.left,
|
m_hwnd = CreateWindowW(L"BooWindow", title.data(), WS_OVERLAPPEDWINDOW, r.left, r.top, r.right - r.left,
|
||||||
r.bottom - r.top, nullptr, nullptr, nullptr, nullptr);
|
r.bottom - r.top, nullptr, nullptr, nullptr, nullptr);
|
||||||
HINSTANCE wndInstance = HINSTANCE(GetWindowLongPtr(m_hwnd, GWLP_HINSTANCE));
|
|
||||||
m_imc = ImmGetContext(m_hwnd);
|
m_imc = ImmGetContext(m_hwnd);
|
||||||
|
|
||||||
#if BOO_HAS_VULKAN
|
#if BOO_HAS_VULKAN
|
||||||
|
HINSTANCE wndInstance = HINSTANCE(GetWindowLongPtr(m_hwnd, GWLP_HINSTANCE));
|
||||||
if (b3dCtx.m_vulkanDxFactory) {
|
if (b3dCtx.m_vulkanDxFactory) {
|
||||||
m_gfxCtx.reset(new GraphicsContextWin32Vulkan(this, wndInstance, m_hwnd, &g_VulkanContext, b3dCtx));
|
m_gfxCtx.reset(new GraphicsContextWin32Vulkan(this, wndInstance, m_hwnd, &g_VulkanContext, b3dCtx));
|
||||||
if (m_gfxCtx->initializeContext(nullptr))
|
if (m_gfxCtx->initializeContext(nullptr))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
(void)wndInstance;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
IGraphicsContext::EGraphicsAPI api = IGraphicsContext::EGraphicsAPI::D3D11;
|
IGraphicsContext::EGraphicsAPI api = IGraphicsContext::EGraphicsAPI::D3D11;
|
||||||
if (b3dCtx.m_ctxOgl.m_dxFactory) {
|
if (b3dCtx.m_ctxOgl.m_dxFactory) {
|
||||||
m_gfxCtx.reset(new GraphicsContextWin32GL(IGraphicsContext::EGraphicsAPI::OpenGL3_3, this, m_hwnd, b3dCtx));
|
m_gfxCtx.reset(new GraphicsContextWin32GL(IGraphicsContext::EGraphicsAPI::OpenGL3_3, this, m_hwnd, b3dCtx));
|
||||||
|
|
Loading…
Reference in New Issue