diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-06 22:58:12 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 09:05:25 +0200 |
commit | 51854def8a31f5d23fa98aeafbd5acc72e08b3a4 (patch) | |
tree | ef535f6a3a22c9eb21166431b6a3a59a95b9ddfb | |
parent | f7741985be0234c3fe71e1f97740579e35726b92 (diff) |
mesa: remove useless check in _mesa_update_pixel()
The only caller is _mesa_update_state_locked() which already
checks if _NEW_PIXEL is set before calling _mesa_update_pixel().
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
-rw-r--r-- | src/mesa/main/pixel.c | 5 | ||||
-rw-r--r-- | src/mesa/main/pixel.h | 2 | ||||
-rw-r--r-- | src/mesa/main/state.c | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 608a5454702..218e9fdd6bc 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -626,10 +626,9 @@ update_image_transfer_state(struct gl_context *ctx) /** * Update mesa pixel transfer derived state. */ -void _mesa_update_pixel( struct gl_context *ctx, GLuint new_state ) +void _mesa_update_pixel( struct gl_context *ctx ) { - if (new_state & _NEW_PIXEL) - update_image_transfer_state(ctx); + update_image_transfer_state(ctx); } diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index fd1782e1bcb..17e7376281f 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -64,7 +64,7 @@ void GLAPIENTRY _mesa_PixelTransferi( GLenum pname, GLint param ); extern void -_mesa_update_pixel( struct gl_context *ctx, GLuint newstate ); +_mesa_update_pixel( struct gl_context *ctx ); extern void _mesa_init_pixel( struct gl_context * ctx ); diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 73872b822a6..d534f554bad 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -382,7 +382,7 @@ _mesa_update_state_locked( struct gl_context *ctx ) _mesa_update_stencil( ctx ); if (new_state & _NEW_PIXEL) - _mesa_update_pixel( ctx, new_state ); + _mesa_update_pixel( ctx ); /* ctx->_NeedEyeCoords is now up to date. * |