diff options
author | Kenneth Graunke <[email protected]> | 2018-01-09 23:13:16 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:04 -0800 |
commit | 3eadb1b3a1be98cd2f1d4787a4921d2e39f9901f (patch) | |
tree | c64d91c9a907ac8a3a2e7a9eed3043ed9ded3a36 /src/gallium/drivers/iris/iris_context.h | |
parent | e7c9bddda73d131887eb848b267b8bac74a8389e (diff) |
iris: framebuffers
Diffstat (limited to 'src/gallium/drivers/iris/iris_context.h')
-rw-r--r-- | src/gallium/drivers/iris/iris_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_context.h b/src/gallium/drivers/iris/iris_context.h index eed17bf2ee0..5a6ee906ab7 100644 --- a/src/gallium/drivers/iris/iris_context.h +++ b/src/gallium/drivers/iris/iris_context.h @@ -49,6 +49,7 @@ enum iris_dirty { IRIS_DIRTY_SCISSOR = (1ull << 10), IRIS_DIRTY_LINE_STIPPLE = (1ull << 11), IRIS_DIRTY_VERTEX_ELEMENTS = (1ull << 12), + IRIS_DIRTY_MULTISAMPLE = (1ull << 13), }; struct iris_depth_stencil_alpha_state; @@ -71,6 +72,7 @@ struct iris_context { struct pipe_poly_stipple poly_stipple; struct pipe_scissor_state scissors[IRIS_MAX_VIEWPORTS]; struct pipe_stencil_ref stencil_ref; + struct pipe_framebuffer_state framebuffer; } state; }; |