diff options
author | Kenneth Graunke <[email protected]> | 2014-02-06 17:13:24 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-02-19 01:46:17 -0800 |
commit | 7023786417d8ecf9ea8236d17c739af087ac05be (patch) | |
tree | 511a0adf32eb8f43ffcc0308f0567d16425386d7 | |
parent | 8cad1c115a091c2b5cb34c9d8f530204f47de9fa (diff) |
i965: Enable HiZ on Broadwell.
It appears to work fine.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index ffbdb9470ed..bb194a74406 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -612,7 +612,7 @@ brwCreateContext(gl_api api, brw->is_baytrail = devinfo->is_baytrail; brw->is_haswell = devinfo->is_haswell; brw->has_llc = devinfo->has_llc; - brw->has_hiz = devinfo->has_hiz_and_separate_stencil && brw->gen < 8; + brw->has_hiz = devinfo->has_hiz_and_separate_stencil; brw->has_separate_stencil = devinfo->has_hiz_and_separate_stencil; brw->has_pln = devinfo->has_pln; brw->has_compr4 = devinfo->has_compr4; |