From 9236b3e0d2bbf34c49def3444c46e073d5a3d4c0 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 31 May 2021 07:01:17 -0700 Subject: [PATCH] Remove debug flags --- BeefySysLib/platform/win/DXRenderDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefySysLib/platform/win/DXRenderDevice.cpp b/BeefySysLib/platform/win/DXRenderDevice.cpp index 9eeadcb9..6770afcd 100644 --- a/BeefySysLib/platform/win/DXRenderDevice.cpp +++ b/BeefySysLib/platform/win/DXRenderDevice.cpp @@ -1513,7 +1513,7 @@ bool DXRenderDevice::Init(BFApp* app) D3D_FEATURE_LEVEL d3dFeatureLevel = (D3D_FEATURE_LEVEL)0; int flags = 0; //TODO: - flags = D3D11_CREATE_DEVICE_DEBUG; + //flags = D3D11_CREATE_DEVICE_DEBUG; DXCHECK(D3D11CreateDevice(NULL, D3D_DRIVER_TYPE_HARDWARE, NULL, flags, featureLevelArr, 6, D3D11_SDK_VERSION, &mD3DDevice, &d3dFeatureLevel, &mD3DDeviceContext)); OutputDebugStrF("D3D Feature Level: %X\n", d3dFeatureLevel);