summaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2018-01-19 21:13:52 -0700
committerBrian Paul <[email protected]>2018-01-29 08:35:14 -0700
commit094a80db4c9478391f78cae852c3a482a2f98ada (patch)
tree6d37379c5396c85c5ac164ad5d6040e13de12720 /src/mesa/vbo
parentb080fc6199cd47ff2da632521b5baf52e747745f (diff)
vbo: whitespace/formatting fixes in vbo_exec.h
Reviewed-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/mesa/vbo')
-rw-r--r--src/mesa/vbo/vbo_exec.h33
1 files changed, 18 insertions, 15 deletions
diff --git a/src/mesa/vbo/vbo_exec.h b/src/mesa/vbo/vbo_exec.h
index f02f4591fcc..5f28e70ebeb 100644
--- a/src/mesa/vbo/vbo_exec.h
+++ b/src/mesa/vbo/vbo_exec.h
@@ -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