diff options
author | Kenneth Graunke <[email protected]> | 2013-09-26 12:03:41 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-10-13 00:10:44 -0700 |
commit | d31b928b93694de0a1408f36acb675485fea5973 (patch) | |
tree | 62932dca7174937a59c805fa8092b9b561a76e7d /src/mesa/drivers/dri/i965/brw_context.c | |
parent | 02b632d8e8f2b14c155740d28c276b5869305c60 (diff) |
i965: Remove the brw_context::emit_state_always flag.
This was always set to false, and is only used for debugging.
To enable it, simply change the if (0) block and recompile.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 04045a584a5..3ddc1814e3b 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -475,8 +475,6 @@ brwCreateContext(gl_api api, */ STATIC_ASSERT(BRW_NUM_STATE_BITS <= 8 * sizeof(brw->state.dirty.brw)); - brw->emit_state_always = 0; - brw->batch.need_workaround_flush = true; ctx->VertexProgram._MaintainTnlProgram = true; |