vbo: whitespace/formatting fixes in vbo_exec.h
authorBrian Paul <brianp@vmware.com>
Sat, 20 Jan 2018 04:13:52 +0000 (21:13 -0700)
committerBrian Paul <brianp@vmware.com>
Mon, 29 Jan 2018 15:35:14 +0000 (08:35 -0700)
Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
src/mesa/vbo/vbo_exec.h

index f02f4591fcc92e3bb414b282b73bc33673156799..5f28e70ebebcdde0b68d880efe9b399a42d8b5d7 100644 (file)
@@ -136,28 +136,31 @@ struct vbo_exec_context
 
 
 
-/* External API:
- */
-void vbo_exec_init( struct gl_context *ctx );
-void vbo_exec_destroy( struct gl_context *ctx );
+void
+vbo_exec_init(struct gl_context *ctx);
 
+void
+vbo_exec_destroy(struct gl_context *ctx);
 
-/* Internal functions:
- */
-void vbo_exec_vtx_init( struct vbo_exec_context *exec );
-void vbo_exec_vtx_destroy( struct vbo_exec_context *exec );
+void
+vbo_exec_vtx_init(struct vbo_exec_context *exec);
 
+void
+vbo_exec_vtx_destroy(struct vbo_exec_context *exec);
 
-void vbo_exec_vtx_flush( struct vbo_exec_context *exec, GLboolean unmap );
-void vbo_exec_vtx_map( struct vbo_exec_context *exec );
+void
+vbo_exec_vtx_flush(struct vbo_exec_context *exec, GLboolean unmap);
 
+void
+vbo_exec_vtx_map(struct vbo_exec_context *exec);
 
-void vbo_exec_eval_update( struct vbo_exec_context *exec );
+void
+vbo_exec_eval_update(struct vbo_exec_context *exec);
 
-void vbo_exec_do_EvalCoord2f( struct vbo_exec_context *exec, 
-                                    GLfloat u, GLfloat v );
+void
+vbo_exec_do_EvalCoord2f(struct vbo_exec_context *exec, GLfloat u, GLfloat v);
 
-void vbo_exec_do_EvalCoord1f( struct vbo_exec_context *exec,
-                                    GLfloat u);
+void
+vbo_exec_do_EvalCoord1f(struct vbo_exec_context *exec, GLfloat u);
 
 #endif