diff options
author | Kenneth Graunke <[email protected]> | 2013-09-17 21:50:26 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-26 16:55:18 -0700 |
commit | e9b410b54dd893568a50af661fdbba12b4573ed9 (patch) | |
tree | e76763a2b694e531d405545fe765e76113d940a5 /src/mesa/main/texparam.c | |
parent | 1c904466aa3a1914b42bc6d7fed6f458dba985c0 (diff) |
mesa: Remove 'invalidate_state' parameter to _mesa_dirty_texobj().
Every caller passed true.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r-- | src/mesa/main/texparam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 757ae80ec8d..31723c37784 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -256,7 +256,7 @@ static inline void incomplete(struct gl_context *ctx, struct gl_texture_object *texObj) { FLUSH_VERTICES(ctx, _NEW_TEXTURE); - _mesa_dirty_texobj(ctx, texObj, GL_TRUE); + _mesa_dirty_texobj(ctx, texObj); } |