Skip to content

Commit

Permalink
PIX: Partial cherry pick of validator version fix (microsoft#6908)
Browse files Browse the repository at this point in the history
Partial cherry pickfrom commit  0fd84aa

microsoft@0fd84aa
Original PR:
microsoft#6901
  • Loading branch information
jeffnn authored Sep 9, 2024
1 parent cf285db commit 36454e5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/clang/unittests/HLSL/PixTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,17 @@ void Miss( inout Payload payload )
TestPixUAVCase(hlsl, L"lib_6_3", L"");
TestPixUAVCase(hlsl, L"lib_6_4", L"");
TestPixUAVCase(hlsl, L"lib_6_5", L"");

if (m_ver.SkipDxilVersion(1, 6))
return;
TestPixUAVCase(hlsl, L"lib_6_6", L"");

if (m_ver.SkipDxilVersion(1, 7))
return;
TestPixUAVCase(hlsl, L"lib_6_7", L"");

if (m_ver.SkipDxilVersion(1, 8))
return;
TestPixUAVCase(hlsl, L"lib_6_8", L"");
}

Expand Down

0 comments on commit 36454e5

Please sign in to comment.