Mesa (master): mesa/scissor: fix typos in debug names

Dave Airlie airlied at kemper.freedesktop.org
Tue Mar 10 06:45:59 UTC 2015


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

Author: Dave Airlie <airlied at redhat.com>
Date:   Tue Mar 10 16:45:18 2015 +1000

mesa/scissor: fix typos in debug names

Just noticed this when working on virgl.

Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/mesa/main/scissor.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/main/scissor.c b/src/mesa/main/scissor.c
index 83f39e2..bc8224c 100644
--- a/src/mesa/main/scissor.c
+++ b/src/mesa/main/scissor.c
@@ -201,13 +201,13 @@ void GLAPIENTRY
 _mesa_ScissorIndexed(GLuint index, GLint left, GLint bottom,
                      GLsizei width, GLsizei height)
 {
-   ScissorIndexed(index, left, bottom, width, height, "glScissorIndexd");
+   ScissorIndexed(index, left, bottom, width, height, "glScissorIndexed");
 }
 
 void GLAPIENTRY
 _mesa_ScissorIndexedv(GLuint index, const GLint *v)
 {
-   ScissorIndexed(index, v[0], v[1], v[2], v[3], "glScissorIndexdv");
+   ScissorIndexed(index, v[0], v[1], v[2], v[3], "glScissorIndexedv");
 }
 
 /**




More information about the mesa-commit mailing list