From a2c3c65a31de90fdb55f76f2894860dfbafe2043 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 15 Feb 2019 11:31:31 -0800 Subject: [PATCH] iris: Add IRIS_DIRTY_RENDER_BUFFER state flag Fixes: 2b956a093a1 ("iris: totally untested icelake support") Signed-off-by: Jordan Justen Reviewed-by: Kenneth Graunke --- src/gallium/drivers/iris/iris_context.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index b917e3e..eccb985 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -136,6 +136,7 @@ enum { #define IRIS_DIRTY_VF_STATISTICS (1ull << 57) #define IRIS_DIRTY_PMA_FIX (1ull << 58) #define IRIS_DIRTY_DEPTH_BOUNDS (1ull << 59) +#define IRIS_DIRTY_RENDER_BUFFER (1ull << 60) #define IRIS_ALL_DIRTY_FOR_COMPUTE (IRIS_DIRTY_CS | \ IRIS_DIRTY_SAMPLER_STATES_CS | \ @@ -151,7 +152,8 @@ enum { IRIS_DIRTY_BINDINGS_TES | \ IRIS_DIRTY_BINDINGS_GS | \ IRIS_DIRTY_BINDINGS_FS | \ - IRIS_DIRTY_BINDINGS_CS) + IRIS_DIRTY_BINDINGS_CS | \ + IRIS_DIRTY_RENDER_BUFFER) /** * Non-orthogonal state (NOS) dependency flags. -- 2.7.4