From: Alyssa Rosenzweig Date: Fri, 10 Jul 2020 19:56:17 +0000 (-0400) Subject: pan/mdg: Bump compiler RT maximum X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59308a3a6480a0b7c9fa9d5effaa23ea4b634477;p=mesa.git pan/mdg: Bump compiler RT maximum We don't actually support MRT 8x yet but we would like to soon, so bump it in the compiler. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/midgard/compiler.h b/src/panfrost/midgard/compiler.h index 101eb32af65..5871c1cf967 100644 --- a/src/panfrost/midgard/compiler.h +++ b/src/panfrost/midgard/compiler.h @@ -225,10 +225,14 @@ typedef struct midgard_bundle { } midgard_bundle; enum midgard_rt_id { - MIDGARD_COLOR_RT0, + MIDGARD_COLOR_RT0 = 0, MIDGARD_COLOR_RT1, MIDGARD_COLOR_RT2, MIDGARD_COLOR_RT3, + MIDGARD_COLOR_RT4, + MIDGARD_COLOR_RT5, + MIDGARD_COLOR_RT6, + MIDGARD_COLOR_RT7, MIDGARD_ZS_RT, MIDGARD_NUM_RTS, };