diff options
author | Jordan Justen <[email protected]> | 2019-02-15 11:31:31 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-10-31 00:24:25 -0700 |
commit | a2c3c65a31de90fdb55f76f2894860dfbafe2043 (patch) | |
tree | 081862bd149617e8b5e790f9a20de3169ce07486 /src/gallium | |
parent | 1e36a8f41db9908cbb0773b4bd9731e0b9d166f9 (diff) |
iris: Add IRIS_DIRTY_RENDER_BUFFER state flag
Fixes: 2b956a093a1 ("iris: totally untested icelake support")
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index b917e3e0de6..eccb9850da6 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. |