Skip to content

Commit 6cf7fbb

Browse files
author
Greg Roth
authored
Remove YUV formats from rawgather test (#4479)
R8G8_B8G8_UNORM and G8R8_G8B8_UNORM are YUV formats really in spite of not explicitly indicating by their names. We are leaving such out of format casting for now
1 parent 3ee5e14 commit 6cf7fbb

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

tools/clang/unittests/HLSL/ExecutionTest.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4844,8 +4844,6 @@ TEST_F(ExecutionTest, ATORawGather) {
48444844
RawIntTexture<IntRG<16, 16>, NumThreadsX, NumThreadsY> R16G16_SNORM(true, true, NumThreadsX, DXGI_FORMAT_R16G16_SNORM);
48454845
RawIntTexture<IntRG<16, 16>, NumThreadsX, NumThreadsY> R16G16_SINT(true, false, NumThreadsX, DXGI_FORMAT_R16G16_SINT);
48464846

4847-
RawIntTexture<IntRGBA<8, 8, 8, 8>, NumThreadsX, NumThreadsY> R8G8_B8G8_UNORM(false, true, NumThreadsX, DXGI_FORMAT_R8G8_B8G8_UNORM);
4848-
RawIntTexture<IntRGBA<8, 8, 8, 8>, NumThreadsX, NumThreadsY> G8R8_G8B8_UNORM(false, true, NumThreadsX, DXGI_FORMAT_G8R8_G8B8_UNORM);
48494847
RawIntTexture<IntRGBA<8, 8, 8, 8>, NumThreadsX, NumThreadsY> B8G8R8A8_TYPELESS(false, false, NumThreadsX, DXGI_FORMAT_B8G8R8A8_TYPELESS);
48504848
RawIntTexture<IntRGBA<8, 8, 8, 8>, NumThreadsX, NumThreadsY> B8G8R8A8_UNORM(false, true, NumThreadsX, DXGI_FORMAT_B8G8R8A8_UNORM);
48514849
RawIntTexture<IntRGBA<8, 8, 8, 8>, NumThreadsX, NumThreadsY> B8G8R8A8_UNORM_SRGB(false, true, NumThreadsX, DXGI_FORMAT_B8G8R8A8_UNORM_SRGB);
@@ -4878,8 +4876,6 @@ TEST_F(ExecutionTest, ATORawGather) {
48784876
&R16G16_UINT,
48794877
&R16G16_SNORM,
48804878
&R16G16_SINT,
4881-
&R8G8_B8G8_UNORM,
4882-
&G8R8_G8B8_UNORM,
48834879
&B8G8R8A8_TYPELESS,
48844880
&B8G8R8A8_UNORM,
48854881
&B8G8R8A8_UNORM_SRGB,

0 commit comments

Comments
 (0)