i965: Remove brw_context::depthstencil::hiz_mt
After recent refactorings, the field is written but no longer read. Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
@@ -1083,7 +1083,6 @@ struct brw_context
|
||||
struct {
|
||||
struct intel_mipmap_tree *depth_mt;
|
||||
struct intel_mipmap_tree *stencil_mt;
|
||||
struct intel_mipmap_tree *hiz_mt;
|
||||
|
||||
/* Inter-tile (page-aligned) byte offsets. */
|
||||
uint32_t depth_offset, hiz_offset, stencil_offset;
|
||||
|
||||
@@ -530,7 +530,6 @@ brw_workaround_depthstencil_alignment(struct brw_context *brw,
|
||||
brw->depthstencil.hiz_offset = 0;
|
||||
brw->depthstencil.depth_mt = NULL;
|
||||
brw->depthstencil.stencil_mt = NULL;
|
||||
brw->depthstencil.hiz_mt = NULL;
|
||||
if (depth_irb) {
|
||||
depth_mt = depth_irb->mt;
|
||||
brw->depthstencil.depth_mt = depth_mt;
|
||||
@@ -540,7 +539,6 @@ brw_workaround_depthstencil_alignment(struct brw_context *brw,
|
||||
depth_irb->draw_y & ~tile_mask_y,
|
||||
false);
|
||||
if (intel_renderbuffer_has_hiz(depth_irb)) {
|
||||
brw->depthstencil.hiz_mt = depth_mt->hiz_mt;
|
||||
brw->depthstencil.hiz_offset =
|
||||
intel_region_get_aligned_offset(depth_mt->region,
|
||||
depth_irb->draw_x & ~tile_mask_x,
|
||||
|
||||
Reference in New Issue
Block a user