projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c5d15e
)
mesa: fix incorrect error string
author
Brian Paul
<brianp@vmware.com>
Thu, 23 Jun 2011 23:08:58 +0000
(17:08 -0600)
committer
Brian Paul
<brianp@vmware.com>
Thu, 23 Jun 2011 23:09:13 +0000
(17:09 -0600)
src/mesa/main/teximage.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/teximage.c
b/src/mesa/main/teximage.c
index 40398a8afc34a9fe703b252ef790303b9b2c12f7..6f53686e7ffba658cfd4253d8f2ea09ff7bcad29 100644
(file)
--- a/
src/mesa/main/teximage.c
+++ b/
src/mesa/main/teximage.c
@@
-3274,7
+3274,7
@@
compressedteximage(struct gl_context *ctx, GLuint dims,
border, imageSize, &reason);
if (error) {
- _mesa_error(ctx, error, "gl
TexImage2D(%s)"
, reason);
+ _mesa_error(ctx, error, "gl
CompressedTexImage%uD(%s)", dims
, reason);
return;
}