mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-26 20:00:32 +01:00
fix logic error in stipple_quad() (point/line fragments were getting dropped)
This commit is contained in:
parent
a22fafbb4b
commit
376fb1c23e
1 changed files with 4 additions and 3 deletions
|
|
@ -50,10 +50,11 @@ stipple_quad(struct quad_stage *qs, struct quad_header *quad)
|
|||
quad->mask &= (((stipple0 >> col0) & 0x3) |
|
||||
(((stipple1 >> col0) & 0x3) << 2));
|
||||
#endif
|
||||
|
||||
if (quad->mask)
|
||||
qs->next->run(qs->next, quad);
|
||||
if (!quad->mask)
|
||||
return;
|
||||
}
|
||||
|
||||
qs->next->run(qs->next, quad);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue