Add missing precise attribute to depth prepass output

Commit 67689d48cc enforced precision in
many vertex position outputs. This adds the attribute to the output of
the z-prepass, needed to ensure proper depth testing in the forward
passes.

Signed-off-by: Jeremy Ong <jcong@amazon.com>
This commit is contained in:
Jeremy Ong
2022-01-06 16:51:40 -07:00
parent 89067fe667
commit 39edcd06e4
@@ -17,7 +17,7 @@ struct VSInput
struct VSDepthOutput
{
float4 m_position : SV_Position;
precise float4 m_position : SV_Position;
};
VSDepthOutput DepthPassVS(VSInput IN)