summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/iris/iris_context.h
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2018-08-18 23:21:41 -0700
committerKenneth Graunke <[email protected]>2019-02-21 10:26:08 -0800
commit1d33982e9bdce3e388035edd8440f7b074450582 (patch)
tree704e08690a14f7ff2dbc85e8f9596f4303d33d76 /src/gallium/drivers/iris/iris_context.h
parent3fecb1c44d9225b3d68288041541b5c9a92650f9 (diff)
iris: track depth/stencil writes enabled
Diffstat (limited to 'src/gallium/drivers/iris/iris_context.h')
-rw-r--r--src/gallium/drivers/iris/iris_context.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h
index 5111d59de75..8567b81e65d 100644
--- a/src/gallium/drivers/iris/iris_context.h
+++ b/src/gallium/drivers/iris/iris_context.h
@@ -345,6 +345,12 @@ struct iris_context {
struct pipe_stencil_ref stencil_ref;
struct pipe_framebuffer_state framebuffer;
+ /** Are depth writes enabled? (Depth buffer may or may not exist.) */
+ bool depth_writes_enabled;
+
+ /** Are stencil writes enabled? (Stencil buffer may or may not exist.) */
+ bool stencil_writes_enabled;
+
/** GenX-specific current state */
struct iris_genx_state *genx;