enable primitive restart on dx11

This commit is contained in:
degasus
2013-04-08 16:34:47 +02:00
parent 702198f39b
commit cf98ef8cf3
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ void InitBackendInfo()
g_Config.backend_info.bSupportsDualSourceBlend = true;
g_Config.backend_info.bSupportsFormatReinterpretation = true;
g_Config.backend_info.bSupportsPixelLighting = true;
g_Config.backend_info.bSupportsPrimitiveRestart = false; // TODO: dx11 does support it, but it isn't implemented
g_Config.backend_info.bSupportsPrimitiveRestart = true;
IDXGIFactory* factory;
IDXGIAdapter* ad;