projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71699df
)
improved warning message
author
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 7 Feb 2005 15:04:56 +0000
(15:04 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Mon, 7 Feb 2005 15:04:56 +0000
(15:04 +0000)
src/mesa/drivers/x11/xm_api.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/x11/xm_api.c
b/src/mesa/drivers/x11/xm_api.c
index 70ef10ea1241e0cc9d561951537467d682c96a6f..2e87ca928a9688c7b3d860c8c3264c1004f6109d 100644
(file)
--- a/
src/mesa/drivers/x11/xm_api.c
+++ b/
src/mesa/drivers/x11/xm_api.c
@@
-1745,7
+1745,7
@@
XMesaBuffer XMesaCreateWindowBuffer2( XMesaVisual v, XMesaWindow w,
if (GET_VISUAL_DEPTH(v) != attr.depth) {
#endif
- _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual and window!
\n"
);
+ _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual and window!
(%d != %d)\n", GET_VISUAL_DEPTH(v) , attr.depth
);
return NULL;
}