i965: Add and use a getter for the miptree aux buffer

Make the next patch easier to read by eliminating most of the would-be
duplicate field accesses now.

v2: Update the HiZ comment instead of deleting it (Rafael).

Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
(cherry picked from commit 5503b65103)
This commit is contained in:
Nanley Chery 2018-04-09 11:11:46 -07:00 committed by Dylan Baker
parent c9074b3c52
commit db4e345047
4 changed files with 25 additions and 41 deletions

View file

@ -154,12 +154,6 @@ blorp_surf_for_miptree(struct brw_context *brw,
.aux_usage = aux_usage,
};
struct intel_miptree_aux_buffer *aux_buf = NULL;
if (mt->mcs_buf)
aux_buf = mt->mcs_buf;
else if (mt->hiz_buf)
aux_buf = mt->hiz_buf;
if (mt->format == MESA_FORMAT_S_UINT8 && is_render_target &&
devinfo->gen <= 7)
mt->r8stencil_needs_update = true;
@ -174,6 +168,8 @@ blorp_surf_for_miptree(struct brw_context *brw,
*/
surf->clear_color = mt->fast_clear_color;
struct intel_miptree_aux_buffer *aux_buf =
intel_miptree_get_aux_buffer(mt);
surf->aux_surf = &aux_buf->surf;
surf->aux_addr = (struct blorp_address) {
.reloc_flags = is_render_target ? EXEC_OBJECT_WRITE : 0,

View file

@ -155,21 +155,7 @@ brw_emit_surface_state(struct brw_context *brw,
struct brw_bo *aux_bo = NULL;
struct isl_surf *aux_surf = NULL;
uint64_t aux_offset = 0;
struct intel_miptree_aux_buffer *aux_buf = NULL;
switch (aux_usage) {
case ISL_AUX_USAGE_MCS:
case ISL_AUX_USAGE_CCS_D:
case ISL_AUX_USAGE_CCS_E:
aux_buf = mt->mcs_buf;
break;
case ISL_AUX_USAGE_HIZ:
aux_buf = mt->hiz_buf;
break;
case ISL_AUX_USAGE_NONE:
break;
}
struct intel_miptree_aux_buffer *aux_buf = intel_miptree_get_aux_buffer(mt);
if (aux_usage != ISL_AUX_USAGE_NONE) {
aux_surf = &aux_buf->surf;

View file

@ -1249,8 +1249,7 @@ intel_miptree_release(struct intel_mipmap_tree **mt)
brw_bo_unreference((*mt)->bo);
intel_miptree_release(&(*mt)->stencil_mt);
intel_miptree_release(&(*mt)->r8stencil_mt);
intel_miptree_aux_buffer_free((*mt)->hiz_buf);
intel_miptree_aux_buffer_free((*mt)->mcs_buf);
intel_miptree_aux_buffer_free(intel_miptree_get_aux_buffer(*mt));
free_aux_state_map((*mt)->aux_state);
intel_miptree_release(&(*mt)->plane[0]);
@ -2876,31 +2875,17 @@ intel_miptree_make_shareable(struct brw_context *brw,
0, INTEL_REMAINING_LAYERS,
ISL_AUX_USAGE_NONE, false);
if (mt->mcs_buf) {
intel_miptree_aux_buffer_free(mt->mcs_buf);
struct intel_miptree_aux_buffer *aux_buf = intel_miptree_get_aux_buffer(mt);
if (aux_buf) {
intel_miptree_aux_buffer_free(aux_buf);
mt->mcs_buf = NULL;
/* Any pending MCS/CCS operations are no longer needed. Trying to
* execute any will likely crash due to the missing aux buffer. So let's
* delete all pending ops.
*/
free(mt->aux_state);
mt->aux_state = NULL;
brw->ctx.NewDriverState |= BRW_NEW_AUX_STATE;
}
if (mt->hiz_buf) {
intel_miptree_aux_buffer_free(mt->hiz_buf);
mt->hiz_buf = NULL;
/* Make future calls of intel_miptree_level_has_hiz() return false. */
for (uint32_t l = mt->first_level; l <= mt->last_level; ++l) {
mt->level[l].has_hiz = false;
}
/* Any pending HiZ operations are no longer needed. Trying to execute
* any will likely crash due to the missing aux buffer. So let's delete
* all pending ops.
*/
free(mt->aux_state);
mt->aux_state = NULL;
brw->ctx.NewDriverState |= BRW_NEW_AUX_STATE;

View file

@ -485,6 +485,23 @@ enum isl_dim_layout
get_isl_dim_layout(const struct gen_device_info *devinfo,
enum isl_tiling tiling, GLenum target);
static inline struct intel_miptree_aux_buffer *
intel_miptree_get_aux_buffer(const struct intel_mipmap_tree *mt)
{
switch (mt->aux_usage) {
case ISL_AUX_USAGE_MCS:
case ISL_AUX_USAGE_CCS_D:
case ISL_AUX_USAGE_CCS_E:
return mt->mcs_buf;
case ISL_AUX_USAGE_HIZ:
return mt->hiz_buf;
case ISL_AUX_USAGE_NONE:
return NULL;
default:
unreachable("Invalid aux_usage!\n");
}
}
void
intel_get_image_dims(struct gl_texture_image *image,
int *width, int *height, int *depth);