mesa: improve comment on _mesa_check_disallowed_mapping(), return bool
authorBrian Paul <brianp@vmware.com>
Wed, 27 Apr 2016 16:42:39 +0000 (10:42 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 28 Apr 2016 15:04:17 +0000 (09:04 -0600)
The old comment was a bit terse.  Also, change the function return
type to bool.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/bufferobj.h

index a5bfe886b398b3897bdf92e0588ed3a971cb44b5..5dcc55301ce78f4477abfe87d230f3d17ec9cafa 100644 (file)
@@ -45,8 +45,14 @@ _mesa_bufferobj_mapped(const struct gl_buffer_object *obj,
    return obj->Mappings[index].Pointer != NULL;
 }
 
-/** Can we not use this buffer while mapped? */
-static inline GLboolean
+/**
+ * Check whether the given buffer object is illegally mapped prior to
+ * drawing from (or reading back to) the buffer.
+ * Note that it's legal for a buffer to be mapped at draw/readback time
+ * if it was mapped persistently (See GL_ARB_buffer_storage spec).
+ * \return true if the buffer is illegally mapped, false otherwise
+ */
+static inline bool
 _mesa_check_disallowed_mapping(const struct gl_buffer_object *obj)
 {
    return _mesa_bufferobj_mapped(obj, MAP_USER) &&