Examples: DirectX10: Fix warning, disable debug device, add ignore list (#424)

This commit is contained in:
ocornut
2015-12-03 18:20:48 +00:00
parent 59f0db6f15
commit dadd03fc11
3 changed files with 7 additions and 8 deletions

View File

@ -58,11 +58,7 @@ HRESULT CreateDeviceD3D(HWND hWnd)
}
UINT createDeviceFlags = 0;
#ifdef _DEBUG
createDeviceFlags |= D3D10_CREATE_DEVICE_DEBUG;
#endif
D3D_FEATURE_LEVEL featureLevel;
const D3D_FEATURE_LEVEL featureLevelArray[1] = { D3D_FEATURE_LEVEL_10_1, };
//createDeviceFlags |= D3D10_CREATE_DEVICE_DEBUG;
if (D3D10CreateDeviceAndSwapChain(NULL, D3D10_DRIVER_TYPE_HARDWARE, NULL, createDeviceFlags, D3D10_SDK_VERSION, &sd, &g_pSwapChain, &g_pd3dDevice) != S_OK)
return E_FAIL;