diff options
author | Kenneth Graunke <[email protected]> | 2013-07-05 23:43:36 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-07-09 14:09:30 -0700 |
commit | 44fd490067692f0f9c1b5cff86e2e24a915af0c1 (patch) | |
tree | 607b5c125494cce78425e55e383a7e53a595caae /src/mesa/drivers/dri/i965/brw_misc_state.c | |
parent | 3b80b147f6ae054a76b1322487b9e465aeecd11a (diff) |
i965: Move must_use/has_separate_stencil fields to brw_context.
Signed-off-by: Kenneth Graunke <[email protected]>
Acked-by: Chris Forbes <[email protected]>
Acked-by: Paul Berry <[email protected]>
Acked-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_misc_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_misc_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/mesa/drivers/dri/i965/brw_misc_state.c index c9137cfd7e7..141a0dfe124 100644 --- a/src/mesa/drivers/dri/i965/brw_misc_state.c +++ b/src/mesa/drivers/dri/i965/brw_misc_state.c @@ -629,7 +629,7 @@ brw_emit_depthbuffer(struct brw_context *brw) * Section 7.5.5.1.1 3DSTATE_DEPTH_BUFFER, Bit 1.27 Tiled Surface: * [DevGT+]: This field must be set to TRUE. */ - assert(intel->has_separate_stencil); + assert(brw->has_separate_stencil); depth_surface_type = BRW_SURFACE_2D; width = stencil_irb->Base.Base.Width; |