diff options
author | Jason Ekstrand <[email protected]> | 2017-09-12 15:20:26 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-09-18 12:14:24 -0700 |
commit | 400ffa748ec95bc8733f92084818cd073193669a (patch) | |
tree | a0399f7d4e2a789e5105743c211315475dd29010 /src/mesa | |
parent | f3f42fd867c7b2844378118db08a8095593d81a2 (diff) |
intel/isl: Add a drm_modifier_get_default_aux_state helper
Reviewed-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index 253d3a13f9d..5b7cde82f65 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -1075,8 +1075,7 @@ intel_miptree_create_for_dri_image(struct brw_context *brw, * a worst case of compression. */ enum isl_aux_state initial_state = - mod_info->supports_clear_color ? ISL_AUX_STATE_COMPRESSED_CLEAR : - ISL_AUX_STATE_COMPRESSED_NO_CLEAR; + isl_drm_modifier_get_default_aux_state(image->modifier); if (!create_ccs_buf_for_image(brw, image, mt, initial_state)) { intel_miptree_release(&mt); |