mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 08:00:12 +01:00
i965: Disable HiZ on Haswell for now.
Getting HiZ working means updating all the state packets for resolves and clears. It's not worth doing until we get the basics working. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
180aecb6dc
commit
1ba8c6ad03
1 changed files with 1 additions and 1 deletions
|
|
@ -629,7 +629,7 @@ intelInitContext(struct intel_context *intel,
|
|||
|
||||
intel->has_separate_stencil = intel->intelScreen->hw_has_separate_stencil;
|
||||
intel->must_use_separate_stencil = intel->intelScreen->hw_must_use_separate_stencil;
|
||||
intel->has_hiz = intel->gen >= 6;
|
||||
intel->has_hiz = intel->gen >= 6 && !intel->is_haswell;
|
||||
intel->has_llc = intel->intelScreen->hw_has_llc;
|
||||
intel->has_swizzling = intel->intelScreen->hw_has_swizzling;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue