| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // Run: %dxc -T ps_6_0 -E main
- SamplerState gSampler : register(s1);
- Texture2D <float4> t2 : register(t2);
- TextureCube <uint3> t4 : register(t4);
- Texture2D <int2> t6 : register(t6);
- TextureCube <float> t8 : register(t8);
- // .Gather() does not support Texture1D and Texture3D.
- // CHECK: OpCapability SparseResidency
- // CHECK: [[v2ic:%\d+]] = OpConstantComposite %v2int %int_1 %int_2
- // CHECK: [[v3fc:%\d+]] = OpConstantComposite %v3float %float_0_1 %float_0_2 %float_0_3
- // CHECK: %SparseResidencyStruct = OpTypeStruct %uint %v4int
- // CHECK: %SparseResidencyStruct_0 = OpTypeStruct %uint %v4float
- float4 main(float2 location: A) : SV_Target {
- // CHECK: [[t2:%\d+]] = OpLoad %type_2d_image %t2
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[loc:%\d+]] = OpLoad %v2float %location
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image [[t2]] [[gSampler]]
- // CHECK-NEXT: {{%\d+}} = OpImageGather %v4float [[sampledImg]] [[loc]] %int_0 ConstOffset [[v2ic]]
- float4 val2 = t2.Gather(gSampler, location, int2(1, 2));
- // CHECK: [[t4:%\d+]] = OpLoad %type_cube_image %t4
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_0 [[t4]] [[gSampler]]
- // CHECK-NEXT: {{%\d+}} = OpImageGather %v4uint [[sampledImg]] [[v3fc]] %int_0
- uint4 val4 = t4.Gather(gSampler, float3(0.1, 0.2, 0.3));
- // CHECK: [[t6:%\d+]] = OpLoad %type_2d_image_0 %t6
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[loc:%\d+]] = OpLoad %v2float %location
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_1 [[t6]] [[gSampler]]
- // CHECK-NEXT: {{%\d+}} = OpImageGather %v4int [[sampledImg]] [[loc]] %int_0 ConstOffset [[v2ic]]
- int4 val6 = t6.Gather(gSampler, location, int2(1, 2));
- // CHECK: [[t8:%\d+]] = OpLoad %type_cube_image_0 %t8
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_2 [[t8]] [[gSampler]]
- // CHECK-NEXT: {{%\d+}} = OpImageGather %v4float [[sampledImg]] [[v3fc]] %int_0
- float4 val8 = t8.Gather(gSampler, float3(0.1, 0.2, 0.3));
- uint status;
- // CHECK: [[t6:%\d+]] = OpLoad %type_2d_image_0 %t6
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[loc:%\d+]] = OpLoad %v2float %location
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_1 [[t6]] [[gSampler]]
- // CHECK-NEXT: [[structResult:%\d+]] = OpImageSparseGather %SparseResidencyStruct [[sampledImg]] [[loc]] %int_0 ConstOffset [[v2ic]]
- // CHECK-NEXT: [[status:%\d+]] = OpCompositeExtract %uint [[structResult]] 0
- // CHECK-NEXT: OpStore %status [[status]]
- // CHECK-NEXT: [[result:%\d+]] = OpCompositeExtract %v4int [[structResult]] 1
- // CHECK-NEXT: OpStore %val9 [[result]]
- int4 val9 = t6.Gather(gSampler, location, int2(1, 2), status);
- // CHECK: [[t8:%\d+]] = OpLoad %type_cube_image_0 %t8
- // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler
- // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_2 [[t8]] [[gSampler]]
- // CHECK-NEXT: [[structResult:%\d+]] = OpImageSparseGather %SparseResidencyStruct_0 [[sampledImg]] [[v3fc]] %int_0 None
- // CHECK-NEXT: [[status:%\d+]] = OpCompositeExtract %uint [[structResult]] 0
- // CHECK-NEXT: OpStore %status [[status]]
- // CHECK-NEXT: [[result:%\d+]] = OpCompositeExtract %v4float [[structResult]] 1
- // CHECK-NEXT: OpStore %val10 [[result]]
- float4 val10 = t8.Gather(gSampler, float3(0.1, 0.2, 0.3), status);
- return 1.0;
- }
|