projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2515eb6
)
mesa: fix trivial typo in _mesa_PixelMapusv() error string
author
Brian Paul
<brianp@vmware.com>
Wed, 18 Oct 2017 15:44:13 +0000
(09:44 -0600)
committer
Brian Paul
<brianp@vmware.com>
Wed, 18 Oct 2017 15:53:00 +0000
(09:53 -0600)
Signed-off-by: Brian Paul <brianp@vmware.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103323
src/mesa/main/pixel.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/pixel.c
b/src/mesa/main/pixel.c
index 345c5d183537f9d4acdfe38fe91a6327f4e71784..a9a14df0e300e162c3341c1e0305631016e029cf 100644
(file)
--- a/
src/mesa/main/pixel.c
+++ b/
src/mesa/main/pixel.c
@@
-283,7
+283,7
@@
_mesa_PixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values )
if (map >= GL_PIXEL_MAP_S_TO_S && map <= GL_PIXEL_MAP_I_TO_A) {
/* test that mapsize is a power of two */
if (!_mesa_is_pow_two(mapsize)) {
- _mesa_error( ctx, GL_INVALID_VALUE, "glPixelMapu
i
v(mapsize)" );
+ _mesa_error( ctx, GL_INVALID_VALUE, "glPixelMapu
s
v(mapsize)" );
return;
}
}