diff options
author | Brian Paul <[email protected]> | 2009-04-27 10:45:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-04-27 10:45:41 -0600 |
commit | 777b9ff43e88e456d686208c83712f26aba2dd95 (patch) | |
tree | 086a4752a6d5e453b4e0b1f5a9f3b4a0b910eb58 /src/mesa/drivers/dri/i965/brw_wm.h | |
parent | b58b3a786aa38dcc9d72144c2cc691151e46e3d5 (diff) |
i965: only upload constant buffer data when we actually need the const buffer
Make the use_const_buffer field per-program and only call the code which
updates the constant buffer's data if the flag is set.
This should undo the perf regression from 20f3497e4b6756e330f7b3f54e8acaa1d6c92052
(cherry picked from master, commit dc9705d12d162ba6d087eb762e315de9f97bc456)
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.h b/src/mesa/drivers/dri/i965/brw_wm.h index 75205fddb7f..2f80a60c12b 100644 --- a/src/mesa/drivers/dri/i965/brw_wm.h +++ b/src/mesa/drivers/dri/i965/brw_wm.h @@ -257,8 +257,6 @@ struct brw_wm_compile { GLuint tmp_max; GLuint subroutines[BRW_WM_MAX_SUBROUTINE]; - /** using a real constant buffer? */ - GLboolean use_const_buffer; /** we may need up to 3 constants per instruction (if use_const_buffer) */ struct { GLint index; |