Mesa (master): dri: Clarify comments on InfoMessageF and ErrorMessageF macros.

Carl Worth cworth at kemper.freedesktop.org
Thu Feb 9 01:16:18 UTC 2012


Module: Mesa
Branch: master
Commit: c09504c343d904dc8c135c9b7241e8315c134d0f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c09504c343d904dc8c135c9b7241e8315c134d0f

Author: Carl Worth <cworth at cworth.org>
Date:   Fri Feb  3 16:14:23 2012 -0800

dri: Clarify comments on InfoMessageF and ErrorMessageF macros.

The description of ErrorMessageF was misleading in the case of
LIBGL_DEBUG being unset, (the previous comment could be understood to
mean the error should be printed, but the code does not print in this
case).

InfoMessageF previously had no comment at all.

Reviewed-by: Eugeni Dodonov <eugeni.dodonov at intel.com>

---

 src/glx/dri_common.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c
index ed0b134..5096c1f 100644
--- a/src/glx/dri_common.c
+++ b/src/glx/dri_common.c
@@ -48,6 +48,10 @@
 #define RTLD_GLOBAL 0
 #endif
 
+/**
+ * Print informational message to stderr if LIBGL_DEBUG is set to
+ * "verbose".
+ */
 _X_HIDDEN void
 InfoMessageF(const char *f, ...)
 {
@@ -63,7 +67,8 @@ InfoMessageF(const char *f, ...)
 }
 
 /**
- * Print error to stderr, unless LIBGL_DEBUG=="quiet".
+ * Print error message to stderr if LIBGL_DEBUG is set to anything but
+ * "quiet", (do nothing if LIBGL_DEBUG is unset).
  */
 _X_HIDDEN void
 ErrorMessageF(const char *f, ...)




More information about the mesa-commit mailing list