diff options
author | Kenneth Graunke <[email protected]> | 2018-06-15 16:22:58 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:07 -0800 |
commit | 23987df412ac8fd9e860cdb141f329fed5e86827 (patch) | |
tree | a143b37b8fc6d4ae679fc9e1726ec69f74f9007b /src/gallium/drivers/iris/iris_context.h | |
parent | ccf37c7da9cf772980a8a28037c238b6a9263c4b (diff) |
iris: some dirty fixes
two scissor bits, constants not being flagged, ZeroRTA, clip not being
flagged
Diffstat (limited to 'src/gallium/drivers/iris/iris_context.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index aecced3d05c..fae21f44279 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -54,7 +54,7 @@ struct blorp_params; #define IRIS_DIRTY_BLEND_STATE (1ull << 7) #define IRIS_DIRTY_RASTER (1ull << 8) #define IRIS_DIRTY_CLIP (1ull << 9) -#define IRIS_DIRTY_SCISSOR (1ull << 10) +// XXX: define IRIS_DIRTY_ (1ull << 10) #define IRIS_DIRTY_LINE_STIPPLE (1ull << 11) #define IRIS_DIRTY_VERTEX_ELEMENTS (1ull << 12) #define IRIS_DIRTY_MULTISAMPLE (1ull << 13) |