diff options
author | Chris Forbes <[email protected]> | 2014-12-07 15:32:11 +1300 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-09-08 18:00:36 -0700 |
commit | 70650094ef89ec0261071862ca1589f0550fb792 (patch) | |
tree | dba407d3eb756827bd14eefa17b3013485468b2a /src/mesa/drivers | |
parent | a9df772e0e76254ab232876016ec09b1fadbd700 (diff) |
i965: Add 64-bit dirty flag handling to brw_upload_pull_constants
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state.h | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs_surface_state.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state.h b/src/mesa/drivers/dri/i965/brw_state.h index e75b795a7bc..afce8ad3b27 100644 --- a/src/mesa/drivers/dri/i965/brw_state.h +++ b/src/mesa/drivers/dri/i965/brw_state.h @@ -351,7 +351,7 @@ void gen6_init_vtable_surface_functions(struct brw_context *brw); /* brw_vs_surface_state.c */ void brw_upload_pull_constants(struct brw_context *brw, - GLbitfield brw_new_constbuf, + GLbitfield64 brw_new_constbuf, const struct gl_program *prog, struct brw_stage_state *stage_state, const struct brw_stage_prog_data *prog_data, diff --git a/src/mesa/drivers/dri/i965/brw_vs_surface_state.c b/src/mesa/drivers/dri/i965/brw_vs_surface_state.c index fd7e56e50d5..9bb48eb2e27 100644 --- a/src/mesa/drivers/dri/i965/brw_vs_surface_state.c +++ b/src/mesa/drivers/dri/i965/brw_vs_surface_state.c @@ -50,7 +50,7 @@ */ void brw_upload_pull_constants(struct brw_context *brw, - GLbitfield brw_new_constbuf, + GLbitfield64 brw_new_constbuf, const struct gl_program *prog, struct brw_stage_state *stage_state, const struct brw_stage_prog_data *prog_data, |