[Mesa-dev] [PATCH 07/12] i965: Support calculating the bits needed to set up 16x MSAA

Neil Roberts neil at linux.intel.com
Thu Sep 17 09:00:09 PDT 2015


The gen7_surface_msaa_bits function already returns the right values
for 16 samples but it just needs its assert to be relaxed.
---
 src/mesa/drivers/dri/i965/gen7_wm_surface_state.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
index 15ab2b0..7cdfff1 100644
--- a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
+++ b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
@@ -78,7 +78,7 @@ gen7_surface_msaa_bits(unsigned num_samples, enum intel_msaa_layout layout)
 {
    uint32_t ss4 = 0;
 
-   assert(num_samples <= 8);
+   assert(num_samples <= 16);
 
    /* The SURFACE_MULTISAMPLECOUNT_X enums are simply log2(num_samples) << 3. */
    ss4 |= (ffs(MAX2(num_samples, 1)) - 1) << 3;
-- 
1.9.3



More information about the mesa-dev mailing list