mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
radv: Allow writing 0 scissors.
When rasterization is disabled we can have that few.
Fixes: 76603aa90b "radv: Drop the default viewport when 0 viewports are given."
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
5158603182
commit
1c78e4f053
1 changed files with 2 additions and 1 deletions
|
|
@ -673,7 +673,8 @@ si_write_scissors(struct radeon_winsys_cs *cs, int first,
|
|||
int i;
|
||||
float scale[3], translate[3], guardband_x = INFINITY, guardband_y = INFINITY;
|
||||
const float max_range = 32767.0f;
|
||||
assert(count);
|
||||
if (!count)
|
||||
return;
|
||||
|
||||
radeon_set_context_reg_seq(cs, R_028250_PA_SC_VPORT_SCISSOR_0_TL + first * 4 * 2, count * 2);
|
||||
for (i = 0; i < count; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue