Mesa (master): main: Cosmetic updates to GetBufferPointerv.

Laura Ekstrand ldeks at kemper.freedesktop.org
Tue Mar 17 17:20:06 UTC 2015


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

Author: Laura Ekstrand <laura at jlekstrand.net>
Date:   Mon Mar 16 16:08:36 2015 -0700

main: Cosmetic updates to GetBufferPointerv.

v3: Review from Fredrik Hoglund
   -Split cosmetic refactor of GetBufferPointerv out into a separate commit

Reviewed-by: Fredrik Höglund <fredrik at kde.org>

---

 src/mesa/main/bufferobj.c |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c
index 2811604..49d6d32 100644
--- a/src/mesa/main/bufferobj.c
+++ b/src/mesa/main/bufferobj.c
@@ -2051,14 +2051,15 @@ void GLAPIENTRY
 _mesa_GetBufferPointerv(GLenum target, GLenum pname, GLvoid **params)
 {
    GET_CURRENT_CONTEXT(ctx);
-   struct gl_buffer_object * bufObj;
+   struct gl_buffer_object *bufObj;
 
-   if (pname != GL_BUFFER_MAP_POINTER_ARB) {
-      _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferPointervARB(pname)");
+   if (pname != GL_BUFFER_MAP_POINTER) {
+      _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferPointerv(pname != "
+                  "GL_BUFFER_MAP_POINTER)");
       return;
    }
 
-   bufObj = get_buffer(ctx, "glGetBufferPointervARB", target,
+   bufObj = get_buffer(ctx, "glGetBufferPointerv", target,
                        GL_INVALID_OPERATION);
    if (!bufObj)
       return;




More information about the mesa-commit mailing list