diff options
author | Eleni Maria Stea <[email protected]> | 2019-02-15 15:29:44 +0200 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2019-02-15 15:54:41 -0800 |
commit | 7188e2ba1577fb6e4cf3cb07b73e3fd15950d635 (patch) | |
tree | be77d6167e9780cfff8820f5ff8f081d1c6c5352 /src/mesa/drivers/dri/i965/brw_wm_surface_state.c | |
parent | 248f2e788860240ab84fc10f0d18332c34712b85 (diff) |
i965: Removed the field etc_format from the struct intel_mipmap_tree
After the previous changes to emulate the ETC/EAC formats using the
secondary shadow miptree, the etc_format field of the intel_mipmap_tree
struct became redundant and the remaining check that used it has been
replaced. (Nanley Chery)
Reviewed-by: Nanley Chery <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm_surface_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_surface_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c index 19a46fcf243..a0984791614 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c +++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c @@ -520,7 +520,7 @@ static void brw_update_texture_surface(struct gl_context *ctx, * is safe because texture views aren't allowed on depth/stencil. */ mesa_fmt = mt->format; - } else if (mt->etc_format != MESA_FORMAT_NONE) { + } else if (intel_miptree_has_etc_shadow(brw, mt)) { mesa_fmt = mt->shadow_mt->format; } else if (plane > 0) { mesa_fmt = mt->format; |