diff options
author | Brian Paul <[email protected]> | 2015-07-22 08:04:49 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-07-22 08:17:24 -0600 |
commit | fe4290200942b1103cdc1a238876143b61b731f0 (patch) | |
tree | 12e32007f3b6f38ae8c45900a43841c299876c2f /src/mesa/main/texgetimage.c | |
parent | 800efb0690e962750b9a072bcbab279fdaae24a1 (diff) |
mesa: fix typo s/glGetTextImage/glGetTexImage/
Trivial.
Diffstat (limited to 'src/mesa/main/texgetimage.c')
-rw-r--r-- | src/mesa/main/texgetimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 8539afcf47b..59ec091257e 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -1382,7 +1382,7 @@ _mesa_GetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels ) { GET_CURRENT_CONTEXT(ctx); - static const char *caller = "glGetTextImage"; + static const char *caller = "glGetTexImage"; GLsizei width, height, depth; struct gl_texture_object *texObj; |