Mesa (master): mesa: whitespace, 80-column wrapping in program.c

Brian Paul brianp at kemper.freedesktop.org
Mon Aug 11 15:47:09 UTC 2014


Module: Mesa
Branch: master
Commit: dd8f15a5533cf2847c8039b626cdc7ee18b1eccf
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd8f15a5533cf2847c8039b626cdc7ee18b1eccf

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Aug  8 13:22:28 2014 -0600

mesa: whitespace, 80-column wrapping in program.c

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Roland Scheidegger <sroland at vmware.com>

---

 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 9886b75..ef5bf6b 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);




More information about the mesa-commit mailing list