Instead of setting based on set/unset, allow users to use boolean values.
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
libglx_la_LIBADD = \
$(top_builddir)/src/loader/libloader.la \
+ $(top_builddir)/src/util/libmesautil.la \
$(top_builddir)/src/util/libxmlconfig.la
if HAVE_DRISW
env.Prepend(LIBS = [
libloader,
+ mesautil,
glapi
])
#include "apple_cgl.h"
#include "apple_glx_drawable.h"
+#include "util/debug.h"
+
static pthread_mutex_t context_lock = PTHREAD_MUTEX_INITIALIZER;
/*
*x11errorptr = false;
}
- if (getenv("LIBGL_DIAGNOSTIC"))
+ if (env_var_as_boolean("LIBGL_DIAGNOSTIC", false))
fprintf(stderr, "error: %s\n", apple_cgl.error_string(error));
return true;
#include <inttypes.h>
#include <pthread.h>
#include "apple_glx_log.h"
+#include "util/debug.h"
static bool diagnostic = false;
static aslclient aslc;
void apple_glx_log_init(void) {
- if (getenv("LIBGL_DIAGNOSTIC")) {
+ if (env_var_as_boolean("LIBGL_DIAGNOSTIC", false)) {
diagnostic = true;
}
#include "apple_glx_context.h"
#include "apple_glx_drawable.h"
+#include <stdbool.h>
#include <stdlib.h>
#include <pthread.h>
#include <assert.h>
#include "apple_glx.h"
#include "glxconfig.h"
#include "apple_cgl.h"
+#include "util/debug.h"
/* mesa defines in glew.h, Apple in glext.h.
* Due to namespace nightmares, just do it here.
err = apple_cgl.choose_pixel_format(attr, &pfobj, &vsref);
if (kCGLNoError != err) {
- if (getenv("LIBGL_DIAGNOSTIC")) {
+ if (env_var_as_boolean("LIBGL_DIAGNOSTIC", false)) {
printf("choose_pixel_format error in %s: %s\n", __func__,
apple_cgl.error_string(err));
}
err = apple_cgl.create_context(pfobj, NULL, &newcontext);
if (kCGLNoError != err) {
- if (getenv("LIBGL_DIAGNOSTIC")) {
+ if (env_var_as_boolean("LIBGL_DIAGNOSTIC", false)) {
printf("create_context error in %s: %s\n", __func__,
apple_cgl.error_string(err));
}
*/
#include <assert.h>
+#include <stdbool.h>
+
#include "glxclient.h"
#include <X11/extensions/Xext.h>
#include <X11/extensions/extutil.h>
#endif
#include "glxextensions.h"
+#include "util/debug.h"
+
#include <X11/Xlib-xcb.h>
#include <xcb/xcb.h>
#include <xcb/glx.h>
i = count;
break;
default:
- if(getenv("LIBGL_DIAGNOSTIC")) {
+ if(env_var_as_boolean("LIBGL_DIAGNOSTIC", false)) {
long int tagvalue = *bp++;
fprintf(stderr, "WARNING: unknown GLX tag from server: "
"tag 0x%lx value 0x%lx\n", tag, tagvalue);