mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965: Remove useless (harmful) assertion
The code already skips doing the depth stall on gen >= 8, and as we enable new platforms this assertion will fail needlessly. Instead of changing the caller, make this simple change. Signed-off-by: Ben Widawsky <ben@bwidawsk.net> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
2a721b1b79
commit
29783c0887
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ brw_emit_pipe_control_write(struct brw_context *brw, uint32_t flags,
|
|||
void
|
||||
brw_emit_depth_stall_flushes(struct brw_context *brw)
|
||||
{
|
||||
assert(brw->gen >= 6 && brw->gen <= 9);
|
||||
assert(brw->gen >= 6);
|
||||
|
||||
/* Starting on BDW, these pipe controls are unnecessary.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue