diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-06 22:58:13 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-07 09:06:05 +0200 |
commit | 8614f31be2deb036f5bf6c36f95b457c5f737461 (patch) | |
tree | db4ce5579ef7dbdad70c92294e34daa0ecf75dea /src/mesa/main/pixel.c | |
parent | 51854def8a31f5d23fa98aeafbd5acc72e08b3a4 (diff) |
mesa: inline update_image_transfer_state() into _mesa_update_pixel()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 218e9fdd6bc..345c5d18353 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -598,12 +598,13 @@ _mesa_PixelTransferi( GLenum pname, GLint param ) /***** State Management *****/ /**********************************************************************/ -/* - * Return a bitmask of IMAGE_*_BIT flags which to indicate which - * pixel transfer operations are enabled. + +/** + * Update mesa pixel transfer derived state to indicate which operations are + * enabled. */ -static void -update_image_transfer_state(struct gl_context *ctx) +void +_mesa_update_pixel( struct gl_context *ctx ) { GLuint mask = 0; @@ -623,15 +624,6 @@ update_image_transfer_state(struct gl_context *ctx) } -/** - * Update mesa pixel transfer derived state. - */ -void _mesa_update_pixel( struct gl_context *ctx ) -{ - update_image_transfer_state(ctx); -} - - /**********************************************************************/ /***** Initialization *****/ /**********************************************************************/ |