[Mesa-dev] [PATCH 16/26] i965: Set initial msaa fast clear status explicitly
Topi Pohjolainen
topi.pohjolainen at gmail.com
Tue Oct 11 19:26:48 UTC 2016
instead of in intel_miptree_init_mcs(). For lossless compression
the status is immediately overwritten in
intel_miptree_alloc_non_msrt_mcs() while the status for
non-compressed non-msaa miptrees is explicitly set in
do_blorp_clear().
Signed-off-by: Topi Pohjolainen <topi.pohjolainen at intel.com>
---
src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
index 7a2ec69..f9ceb3b 100644
--- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
@@ -1511,7 +1511,6 @@ intel_miptree_init_mcs(struct brw_context *brw,
void *data = intel_miptree_map_raw(brw, mt->mcs_mt);
memset(data, init_value, mt->mcs_mt->total_height * mt->mcs_mt->pitch);
intel_miptree_unmap_raw(mt->mcs_mt);
- mt->fast_clear_state = INTEL_FAST_CLEAR_STATE_CLEAR;
}
static bool
@@ -1571,6 +1570,7 @@ intel_miptree_alloc_mcs(struct brw_context *brw,
mcs_flags);
intel_miptree_init_mcs(brw, mt, 0xFF);
+ mt->fast_clear_state = INTEL_FAST_CLEAR_STATE_CLEAR;
return mt->mcs_mt;
}
--
2.5.5
More information about the mesa-dev
mailing list