Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/clang/unittests/HLSL/ExecutionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ class ExecutionTest {
D3D12_FEATURE_DATA_D3D12_OPTIONS11 O11;
if (FAILED(pDevice->CheckFeatureSupport((D3D12_FEATURE)D3D12_FEATURE_D3D12_OPTIONS11, &O11, sizeof(O11))))
return false;
return O11.AtomicInt64OnDescriptorHeapResourcesSupported != FALSE;
return O11.AtomicInt64OnDescriptorHeapResourceSupported != FALSE;
#else
UNREFERENCED_PARAMETER(pDevice);
return false;
Expand Down