I thought the answer should be before. But I have a shader which seems to contradict this:
float4 vp(
// Vertex Inputs
in float4 position : POSITION,
uniform float4x4 worldViewProj) : TEXCOORD6
{
float4 p = mul(worldViewProj, position);
p.y /= 2.0;
return p;
}
worldViewProj is the combined matrix converting world position to screen coords. I expected this vertex shader would squash the output into the top half of the render-target, and indeed it does do this - but the bottom half of the view then gets filled with more geometry which normally is out of view.
Is this simply due to the GPU's culling being quite crude?