summaryrefslogtreecommitdiff
path: root/src/gallium/targets/xorg-i915
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/xorg-i915')
-rw-r--r--src/gallium/targets/xorg-i915/Makefile2
-rw-r--r--src/gallium/targets/xorg-i915/intel_target.c11
2 files changed, 11 insertions, 2 deletions
diff --git a/src/gallium/targets/xorg-i915/Makefile b/src/gallium/targets/xorg-i915/Makefile
index 4f9202b052..3ab7285fb9 100644
--- a/src/gallium/targets/xorg-i915/Makefile
+++ b/src/gallium/targets/xorg-i915/Makefile
@@ -8,7 +8,7 @@ C_SOURCES = \
intel_xorg.c
DRIVER_DEFINES = \
- -DHAVE_CONFIG_H
+ -DHAVE_CONFIG_H -DGALLIUM_RBUG -DGALLIUM_TRACE
DRIVER_LINKS = \
$(TOP)/src/gallium/state_trackers/xorg/libxorgtracker.a \
diff --git a/src/gallium/targets/xorg-i915/intel_target.c b/src/gallium/targets/xorg-i915/intel_target.c
index a79238f3a0..8c8ef7e02b 100644
--- a/src/gallium/targets/xorg-i915/intel_target.c
+++ b/src/gallium/targets/xorg-i915/intel_target.c
@@ -1,5 +1,6 @@
#include "state_tracker/drm_driver.h"
+#include "target-helpers/inline_debug_helper.h"
#include "i915/drm/i915_drm_public.h"
#include "i915/i915_public.h"
@@ -7,11 +8,19 @@ static struct pipe_screen *
create_screen(int fd)
{
struct i915_winsys *iws;
+ struct pipe_screen *screen;
+
iws = i915_drm_winsys_create(fd);
if (!iws)
return NULL;
- return i915_screen_create(iws);
+ screen = i915_screen_create(iws);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
}
DRM_DRIVER_DESCRIPTOR("i915", "i915", create_screen)