summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-06-28 21:50:51 +0200
committerJakob Bornecrantz <jakob@vmware.com>2010-06-28 21:52:03 +0200
commitd12c4c5a62dbf5e32f989c8ef53a5a878cc5c0a2 (patch)
treeed126a8c05eb572c73f8fb49184f24c7a68d129c
parent2932dd637439247dc1c20fb3bf8ef0ec1920727e (diff)
glhd: Re-integrate with the debug system
-rw-r--r--src/gallium/auxiliary/target-helpers/inline_debug_helper.h8
-rw-r--r--src/gallium/drivers/galahad/glhd_screen.c6
2 files changed, 13 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
index 1bc329c9f0..0433da6141 100644
--- a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
+++ b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
@@ -18,6 +18,10 @@
#include "rbug/rbug_public.h"
#endif
+#ifdef GALLIUM_GALAHAD
+#include "galahad/glhd_public.h"
+#endif
+
static INLINE struct pipe_screen *
debug_screen_wrap(struct pipe_screen *screen)
{
@@ -30,6 +34,10 @@ debug_screen_wrap(struct pipe_screen *screen)
screen = trace_screen_create(screen);
#endif
+#if defined(GALLIUM_GALAHAD)
+ screen = galahad_screen_create(screen);
+#endif
+
return screen;
}
diff --git a/src/gallium/drivers/galahad/glhd_screen.c b/src/gallium/drivers/galahad/glhd_screen.c
index bcc37cb633..4117485702 100644
--- a/src/gallium/drivers/galahad/glhd_screen.c
+++ b/src/gallium/drivers/galahad/glhd_screen.c
@@ -36,6 +36,7 @@
#include "glhd_context.h"
#include "glhd_objects.h"
+DEBUG_GET_ONCE_BOOL_OPTION(galahad, "GALLIUM_GALAHAD", FALSE)
static void
galahad_screen_destroy(struct pipe_screen *_screen)
@@ -298,9 +299,12 @@ galahad_screen_create(struct pipe_screen *screen)
{
struct galahad_screen *glhd_screen;
+ if (!debug_get_option_galahad())
+ return screen;
+
glhd_screen = CALLOC_STRUCT(galahad_screen);
if (!glhd_screen) {
- return NULL;
+ return screen;
}
glhd_screen->base.winsys = NULL;