tests: Enable debug layer.

This commit is contained in:
Józef Kucia 2016-09-21 13:19:16 +02:00
parent 4503e8b23a
commit d406723049
1 changed files with 8 additions and 0 deletions

View File

@ -117,5 +117,13 @@ static void test_create_device(void)
START_TEST(d3d12)
{
ID3D12Debug *debug;
if (SUCCEEDED(D3D12GetDebugInterface(&IID_ID3D12Debug, (void **)&debug)))
{
ID3D12Debug_EnableDebugLayer(debug);
ID3D12Debug_Release(debug);
}
test_create_device();
}