rsx: Implement stippled rendering

This commit is contained in:
kd-11 2020-05-29 00:51:36 +03:00 committed by kd-11
parent 3df83e03a9
commit 1677618c75
15 changed files with 153 additions and 10 deletions

View file

@ -792,6 +792,11 @@ namespace rsx
}
}
if (rsx::method_registers.polygon_stipple_enabled())
{
rop_control |= (1u << 9);
}
// Generate wpos coefficients
// wpos equation is now as follows:
// wpos.y = (frag_coord / resolution_scale) * ((window_origin!=top)?-1.: 1.) + ((window_origin!=top)? window_height : 0)