From 3b4279f772b0ca29def6aa666d69008b1f118a16 Mon Sep 17 00:00:00 2001 From: Nanley Chery Date: Fri, 6 Jul 2018 13:02:44 -0700 Subject: [PATCH] i965/miptree: Allocate MS texture BOs as BUSY These buffer objects are never accessed with the CPU. Reviewed-by: Topi Pohjolainen --- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 4 ++-- 1 file changed, 2 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 6d1f8d5a6df..7b1f0896ae9 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -679,8 +679,8 @@ miptree_create(struct brw_context *brw, enum intel_miptree_create_flags flags) { const struct gen_device_info *devinfo = &brw->screen->devinfo; - const uint32_t alloc_flags = (flags & MIPTREE_CREATE_BUSY) ? - BO_ALLOC_BUSY : 0; + const uint32_t alloc_flags = + (flags & MIPTREE_CREATE_BUSY || num_samples > 1) ? BO_ALLOC_BUSY : 0; isl_tiling_flags_t tiling_flags = ISL_TILING_ANY_MASK; /* TODO: This used to be because there wasn't BLORP to handle Y-tiling. */ -- 2.30.2