SPIRV-Cross/reference/shaders-ue4/asm/frag
Chip Davis fd738e3387 MSL: Adjust FragCoord for sample-rate shading.
In Metal, the `[[position]]` input to a fragment shader remains at
fragment center, even at sample rate, like OpenGL and Direct3D. In
Vulkan, however, when the fragment shader runs at sample rate, the
`FragCoord` builtin moves to the sample position in the framebuffer,
instead of the fragment center. To account for this difference, adjust
the `FragCoord`, if present, by the sample position. The -0.5 offset is
because the fragment center is at (0.5, 0.5).

Also, add an option to force sample-rate shading in a fragment shader.
Since Metal has no explicit control for this, this is done by adding a
dummy `[[sample_id]]` which is otherwise unused, if none is already
present. This is intended to be used from e.g. MoltenVK when a
pipeline's `minSampleShading` value is nonzero.

Instead of checking if any `Input` variables have `Sample`
interpolation, I've elected to check that the `SampleRateShading`
capability is present. Since `SampleId`, `SamplePosition`, and the
`Sample` interpolation decoration require this cap, this should be
equivalent for any valid SPIR-V module. If this isn't acceptable, let me
know.
2020-11-23 10:30:24 -06:00
..
depth-compare.asm.frag MSL: Do not generate UnsafeArray<> for any array inside buffer objects. 2019-10-24 12:22:30 +02:00
global-constant-arrays.asm.frag Hack some constants in UE4 tests. 2019-10-28 11:20:41 +01:00
padded-float-array-member-defef.asm.frag Hack some constants in UE4 tests. 2019-10-28 11:20:41 +01:00
sample-mask-not-array.asm.frag MSL: Do not generate UnsafeArray<> for any array inside buffer objects. 2019-10-24 12:22:30 +02:00
subpass-input.ios.framebuffer-fetch.asm.frag MSL: Adjust FragCoord for sample-rate shading. 2020-11-23 10:30:24 -06:00
subpass-input.msl23.framebuffer-fetch.asm.frag MSL: Adjust FragCoord for sample-rate shading. 2020-11-23 10:30:24 -06:00
texture-atomics.asm.argument.msl2.frag MSL: Support atomic access to images from argument buffers. 2020-10-13 02:37:18 -05:00
texture-atomics.asm.frag Implement context-sensitive expression read tracking. 2020-06-29 12:20:35 +02:00
texture-atomics.asm.graphics-robust-access.frag Implement context-sensitive expression read tracking. 2020-06-29 12:20:35 +02:00