From dd8f15a5533cf2847c8039b626cdc7ee18b1eccf Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 8 Aug 2014 13:22:28 -0600 Subject: [PATCH] mesa: whitespace, 80-column wrapping in program.c Reviewed-by: Ian Romanick Reviewed-by: Roland Scheidegger --- src/mesa/program/program.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/mesa/program/program.c b/src/mesa/program/program.c index 9886b751fcd..ef5bf6b1167 100644 --- a/src/mesa/program/program.c +++ b/src/mesa/program/program.c @@ -251,8 +251,9 @@ init_program_struct(struct gl_program *prog, GLenum target, GLuint id) * Initialize a new fragment program object. */ struct gl_program * -_mesa_init_fragment_program( struct gl_context *ctx, struct gl_fragment_program *prog, - GLenum target, GLuint id) +_mesa_init_fragment_program(struct gl_context *ctx, + struct gl_fragment_program *prog, + GLenum target, GLuint id) { if (prog) { init_program_struct(&prog->Base, target, id); @@ -266,8 +267,9 @@ _mesa_init_fragment_program( struct gl_context *ctx, struct gl_fragment_program * Initialize a new vertex program object. */ struct gl_program * -_mesa_init_vertex_program( struct gl_context *ctx, struct gl_vertex_program *prog, - GLenum target, GLuint id) +_mesa_init_vertex_program(struct gl_context *ctx, + struct gl_vertex_program *prog, + GLenum target, GLuint id) { if (prog) { init_program_struct(&prog->Base, target, id); @@ -282,8 +284,8 @@ _mesa_init_vertex_program( struct gl_context *ctx, struct gl_vertex_program *pro */ struct gl_program * _mesa_init_compute_program(struct gl_context *ctx, - struct gl_compute_program *prog, GLenum target, - GLuint id) + struct gl_compute_program *prog, + GLenum target, GLuint id) { if (prog) { init_program_struct(&prog->Base, target, id); @@ -297,8 +299,9 @@ _mesa_init_compute_program(struct gl_context *ctx, * Initialize a new geometry program object. */ struct gl_program * -_mesa_init_geometry_program( struct gl_context *ctx, struct gl_geometry_program *prog, - GLenum target, GLuint id) +_mesa_init_geometry_program(struct gl_context *ctx, + struct gl_geometry_program *prog, + GLenum target, GLuint id) { if (prog) { init_program_struct(&prog->Base, target, id); -- 2.30.2