mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 18:38:05 +02:00
i965/gen7: Add missing ! to brw->gs.prog_active assertion.
A typo in commitc173541d97accidentally removed the !. It's supposed to assert that there is _not_ an active GS program. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=38762 Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> (cherry-picked from commit5ddc518401)
This commit is contained in:
parent
82ebfa6387
commit
a8d7f36d65
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ upload_urb(struct brw_context *brw)
|
|||
assert(brw->urb.nr_vs_entries % 8 == 0);
|
||||
assert(brw->urb.nr_gs_entries % 8 == 0);
|
||||
/* GS requirement */
|
||||
assert(brw->gs.prog_active);
|
||||
assert(!brw->gs.prog_active);
|
||||
|
||||
BEGIN_BATCH(2);
|
||||
OUT_BATCH(_3DSTATE_PUSH_CONSTANT_ALLOC_VS << 16 | (2 - 2));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue