Module: Mesa Branch: master Commit: 6120fbc444862a870e81b263978b5d784bb06f26 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6120fbc444862a870e81b263978b5d784bb06f26
Author: Timothy Arceri <[email protected]> Date: Thu Jun 29 14:14:03 2017 +1000 mesa: tidy up white space in pixelstore.c --- src/mesa/main/pixelstore.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/pixelstore.c b/src/mesa/main/pixelstore.c index 4738f96213..6123da9227 100644 --- a/src/mesa/main/pixelstore.c +++ b/src/mesa/main/pixelstore.c @@ -215,26 +215,26 @@ pixel_storei(GLenum pname, GLint param, bool no_error) return; invalid_enum_error: - _mesa_error( ctx, GL_INVALID_ENUM, "glPixelStore" ); + _mesa_error(ctx, GL_INVALID_ENUM, "glPixelStore"); return; invalid_value_error: - _mesa_error( ctx, GL_INVALID_VALUE, "glPixelStore(param)" ); + _mesa_error(ctx, GL_INVALID_VALUE, "glPixelStore(param)"); return; } void GLAPIENTRY -_mesa_PixelStorei( GLenum pname, GLint param ) +_mesa_PixelStorei(GLenum pname, GLint param) { pixel_storei(pname, param, false); } void GLAPIENTRY -_mesa_PixelStoref( GLenum pname, GLfloat param ) +_mesa_PixelStoref(GLenum pname, GLfloat param) { - _mesa_PixelStorei( pname, IROUND(param) ); + _mesa_PixelStorei(pname, IROUND(param)); } @@ -256,7 +256,7 @@ _mesa_PixelStoref_no_error(GLenum pname, GLfloat param) * Initialize the context's pixel store state. */ void -_mesa_init_pixelstore( struct gl_context *ctx ) +_mesa_init_pixelstore(struct gl_context *ctx) { /* Pixel transfer */ ctx->Pack.Alignment = 4; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
