mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 19:30:11 +01:00
iris: sample mask...not 0.
We now have a first triangle!
This commit is contained in:
parent
1a6bb266cf
commit
213b70a222
1 changed files with 1 additions and 1 deletions
|
|
@ -1999,7 +1999,7 @@ iris_upload_render_state(struct iris_context *ice,
|
|||
|
||||
if (dirty & IRIS_DIRTY_SAMPLE_MASK) {
|
||||
iris_emit_cmd(batch, GENX(3DSTATE_SAMPLE_MASK), ms) {
|
||||
ms.SampleMask = ice->state.sample_mask;
|
||||
ms.SampleMask = MAX2(ice->state.sample_mask, 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue