// Run: %dxc -T ps_6_0 -E main SamplerState gSampler : register(s5); // Note: The front end forbids sampling from non-floating-point texture formats. Texture1DArray t1 : register(t1); Texture2DArray t2 : register(t2); TextureCubeArray t3 : register(t3); Texture2DArray t4 : register(t4); TextureCubeArray t5 : register(t5); // CHECK: OpCapability ImageGatherExtended // CHECK: OpCapability MinLod // CHECK: OpCapability SparseResidency // CHECK: [[v2fc:%\d+]] = OpConstantComposite %v2float %float_0_1 %float_1 // CHECK: %type_sampled_image = OpTypeSampledImage %type_1d_image_array // CHECK: [[v3fc:%\d+]] = OpConstantComposite %v3float %float_0_1 %float_0_2 %float_1 // CHECK: %type_sampled_image_0 = OpTypeSampledImage %type_2d_image_array // CHECK: [[v4fc:%\d+]] = OpConstantComposite %v4float %float_0_1 %float_0_2 %float_0_3 %float_1 // CHECK: %type_sampled_image_1 = OpTypeSampledImage %type_cube_image_array // CHECK: %SparseResidencyStruct = OpTypeStruct %uint %v4float float4 main(int2 offset : A) : SV_Target { // CHECK: [[t1:%\d+]] = OpLoad %type_1d_image_array %t1 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image [[t1]] [[gSampler]] // CHECK-NEXT: {{%\d+}} = OpImageSampleImplicitLod %v4float [[sampledImg]] [[v2fc]] Bias|ConstOffset %float_0_5 %int_1 float4 val1 = t1.SampleBias(gSampler, float2(0.1, 1), 0.5, 1); // CHECK: [[t2:%\d+]] = OpLoad %type_2d_image_array %t2 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[offset:%\d+]] = OpLoad %v2int %offset // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_0 [[t2]] [[gSampler]] // CHECK-NEXT: {{%\d+}} = OpImageSampleImplicitLod %v4float [[sampledImg]] [[v3fc]] Bias|Offset %float_0_5 [[offset]] float4 val2 = t2.SampleBias(gSampler, float3(0.1, 0.2, 1), 0.5, offset); // CHECK: [[t3:%\d+]] = OpLoad %type_cube_image_array %t3 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_1 [[t3]] [[gSampler]] // CHECK-NEXT: {{%\d+}} = OpImageSampleImplicitLod %v4float [[sampledImg]] [[v4fc]] Bias %float_0_5 float4 val3 = t3.SampleBias(gSampler, float4(0.1, 0.2, 0.3, 1), 0.5); float clamp; // CHECK: [[clamp:%\d+]] = OpLoad %float %clamp // CHECK-NEXT: [[t1:%\d+]] = OpLoad %type_1d_image_array %t1 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image [[t1]] [[gSampler]] // CHECK-NEXT: {{%\d+}} = OpImageSampleImplicitLod %v4float [[sampledImg]] [[v2fc]] Bias|ConstOffset|MinLod %float_0_5 %int_1 [[clamp]] float4 val4 = t1.SampleBias(gSampler, float2(0.1, 1), 0.5, 1, clamp); // CHECK: [[t3:%\d+]] = OpLoad %type_cube_image_array %t3 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_1 [[t3]] [[gSampler]] // CHECK-NEXT: {{%\d+}} = OpImageSampleImplicitLod %v4float [[sampledImg]] [[v4fc]] Bias|MinLod %float_0_5 %float_2_5 float4 val5 = t3.SampleBias(gSampler, float4(0.1, 0.2, 0.3, 1), 0.5, /*clamp*/ 2.5f); uint status; // CHECK: [[clamp:%\d+]] = OpLoad %float %clamp // CHECK-NEXT: [[t1:%\d+]] = OpLoad %type_1d_image_array %t1 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image [[t1]] [[gSampler]] // CHECK-NEXT: [[structResult:%\d+]] = OpImageSparseSampleImplicitLod %SparseResidencyStruct [[sampledImg]] [[v2fc]] Bias|ConstOffset|MinLod %float_0_5 %int_1 [[clamp]] // CHECK-NEXT: [[status:%\d+]] = OpCompositeExtract %uint [[structResult]] 0 // CHECK-NEXT: OpStore %status [[status]] // CHECK-NEXT: [[result:%\d+]] = OpCompositeExtract %v4float [[structResult]] 1 // CHECK-NEXT: OpStore %val6 [[result]] float4 val6 = t1.SampleBias(gSampler, float2(0.1, 1), 0.5, 1, clamp, status); // CHECK: [[t3:%\d+]] = OpLoad %type_cube_image_array %t3 // CHECK-NEXT: [[gSampler:%\d+]] = OpLoad %type_sampler %gSampler // CHECK-NEXT: [[sampledImg:%\d+]] = OpSampledImage %type_sampled_image_1 [[t3]] [[gSampler]] // CHECK-NEXT: [[structResult:%\d+]] = OpImageSparseSampleImplicitLod %SparseResidencyStruct [[sampledImg]] [[v4fc]] Bias|MinLod %float_0_5 %float_2_5 // CHECK-NEXT: [[status:%\d+]] = OpCompositeExtract %uint [[structResult]] 0 // CHECK-NEXT: OpStore %status [[status]] // CHECK-NEXT: [[result:%\d+]] = OpCompositeExtract %v4float [[structResult]] 1 // CHECK-NEXT: OpStore %val7 [[result]] float4 val7 = t3.SampleBias(gSampler, float4(0.1, 0.2, 0.3, 1), 0.5, /*clamp*/ 2.5f, status); ///////////////////////////////////////////////////////////////////////////////////////////////////////// // Make sure OpImageSampleImplicitLod returns a vec4. // Make sure OpImageSparseSampleImplicitLod returns a struct, in which the second member is a vec4. ///////////////////////////////////////////////////////////////////////////////////////////////////////// // CHECK: [[v4result:%\d+]] = OpImageSampleImplicitLod %v4float {{%\d+}} {{%\d+}} Bias|Offset %float_0_5 {{%\d+}} // CHECK: {{%\d+}} = OpCompositeExtract %float [[v4result]] 0 float val8 = t4.SampleBias(gSampler, float3(0.1, 0.2, 1), 0.5, offset); // CHECK: [[structResult:%\d+]] = OpImageSparseSampleImplicitLod %SparseResidencyStruct {{%\d+}} {{%\d+}} Bias|MinLod %float_0_5 %float_2_5 // CHECK: [[v4result:%\d+]] = OpCompositeExtract %v4float [[structResult]] 1 // CHECK: {{%\d+}} = OpVectorShuffle %v3float [[v4result]] [[v4result]] 0 1 2 float3 val9 = t5.SampleBias(gSampler, float4(0.1, 0.2, 0.3, 1), 0.5, /*clamp*/ 2.5f, status); return 1.0; }