summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/scissor.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2015-03-10 16:45:18 +1000
committerDave Airlie <airlied@redhat.com>2015-03-10 16:45:45 +1000
commit4d318b61fc14c7ed550007cb568ff27dbeab1662 (patch)
treefc9ec4dbc0357f0f78bc20c02e6a341920747e4a /src/mesa/main/scissor.c
parente5cd42ed9abadac8be085eea67049dc1e19ade09 (diff)
downloadexternal_mesa3d-4d318b61fc14c7ed550007cb568ff27dbeab1662.zip
external_mesa3d-4d318b61fc14c7ed550007cb568ff27dbeab1662.tar.gz
external_mesa3d-4d318b61fc14c7ed550007cb568ff27dbeab1662.tar.bz2
mesa/scissor: fix typos in debug names
Just noticed this when working on virgl. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/main/scissor.c')
-rw-r--r--src/mesa/main/scissor.c4
1 files 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");
}
/**