//TEST:REFLECTION:-profile glsl_fragment -target glsl // Confirm that we do parameter binding correctly // when we have both a parameter block *and* user-defined // resource parameters that both need automatic // binding allocation. struct Helper { Texture2D t; SamplerState s; }; ParameterBlock a; Texture2D b; float4 main() : SV_target { return 0.0; }