summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/bufferobj.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-09-15 14:04:58 -0600
committerBrian Paul <brianp@vmware.com>2015-09-16 08:53:21 -0600
commit8faed71830302bbc640af9ef120bba276043a0a9 (patch)
tree4df7782177d1d8dae09775302f9273c5e5763ca2 /src/mesa/main/bufferobj.c
parentedc01c6704b39619ba3856ad801584611869a9d8 (diff)
downloadexternal_mesa3d-8faed71830302bbc640af9ef120bba276043a0a9.zip
external_mesa3d-8faed71830302bbc640af9ef120bba276043a0a9.tar.gz
external_mesa3d-8faed71830302bbc640af9ef120bba276043a0a9.tar.bz2
mesa: remove trailing whitespace in bufferobj.c
Trivial.
Diffstat (limited to 'src/mesa/main/bufferobj.c')
-rw-r--r--src/mesa/main/bufferobj.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c
index 7c6c70a..96590f5 100644
--- a/src/mesa/main/bufferobj.c
+++ b/src/mesa/main/bufferobj.c
@@ -391,7 +391,7 @@ convert_clear_buffer_data(struct gl_context *ctx,
/**
* Allocate and initialize a new buffer object.
- *
+ *
* Default callback for the \c dd_function_table::NewBufferObject() hook.
*/
static struct gl_buffer_object *
@@ -409,7 +409,7 @@ _mesa_new_buffer_object(struct gl_context *ctx, GLuint name)
/**
* Delete a buffer object.
- *
+ *
* Default callback for the \c dd_function_table::DeleteBuffer() hook.
*/
static void
@@ -980,7 +980,7 @@ bind_buffer_object(struct gl_context *ctx, GLenum target, GLuint buffer)
&newBufObj, "glBindBuffer"))
return;
}
-
+
/* bind new buffer */
_mesa_reference_buffer_object(ctx, bindTarget, newBufObj);
}
@@ -988,7 +988,7 @@ bind_buffer_object(struct gl_context *ctx, GLenum target, GLuint buffer)
/**
* Update the default buffer objects in the given context to reference those
- * specified in the shared state and release those referencing the old
+ * specified in the shared state and release those referencing the old
* shared state.
*/
void
@@ -1192,7 +1192,7 @@ _mesa_BindBuffer(GLenum target, GLuint buffer)
/**
* Delete a set of buffer objects.
- *
+ *
* \param n Number of buffer objects to delete.
* \param ids Array of \c n buffer object IDs.
*/
@@ -1410,9 +1410,9 @@ _mesa_CreateBuffers(GLsizei n, GLuint *buffers)
/**
* Determine if ID is the name of a buffer object.
- *
+ *
* \param id ID of the potential buffer object.
- * \return \c GL_TRUE if \c id is the name of a buffer object,
+ * \return \c GL_TRUE if \c id is the name of a buffer object,
* \c GL_FALSE otherwise.
*/
GLboolean GLAPIENTRY