diff options
author | Kenneth Graunke <[email protected]> | 2016-04-27 11:26:08 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-05-16 00:11:43 -0700 |
commit | b23b099a0bc3ea0c6857b342b6d75f0dbfc334bd (patch) | |
tree | 0779095a7d4c5626e73356c4284e642fbf65a7bd /src/mesa/drivers/dri/i965/brw_gs.c | |
parent | 8e71ac731b53a755df37efe63cf49607276de2d4 (diff) |
i965: Mark brw const in brw_state_dirty and callers.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_gs.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_gs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_gs.c b/src/mesa/drivers/dri/i965/brw_gs.c index 91efd344f90..4dddb863e97 100644 --- a/src/mesa/drivers/dri/i965/brw_gs.c +++ b/src/mesa/drivers/dri/i965/brw_gs.c @@ -199,7 +199,7 @@ brw_codegen_gs_prog(struct brw_context *brw, } static bool -brw_gs_state_dirty(struct brw_context *brw) +brw_gs_state_dirty(const struct brw_context *brw) { return brw_state_dirty(brw, _NEW_TEXTURE, |