diff options
author | Jakob Bornecrantz <[email protected]> | 2010-06-24 01:53:05 +0200 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-06-24 02:19:43 +0200 |
commit | 57d14f2fbbfc50656be76fa0f77e1ed505180204 (patch) | |
tree | d927264c83d9a36aa3ccc2cd141108ac02152e62 /src/gallium/targets/xorg-i915 | |
parent | ea1786ec5b1385fe26927e206ca81d87ca70ca6a (diff) |
gallium: Use debugging helper in all drm targets
Diffstat (limited to 'src/gallium/targets/xorg-i915')
-rw-r--r-- | src/gallium/targets/xorg-i915/Makefile | 2 | ||||
-rw-r--r-- | src/gallium/targets/xorg-i915/intel_target.c | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/src/gallium/targets/xorg-i915/Makefile b/src/gallium/targets/xorg-i915/Makefile index 4f9202b0520..3ab7285fb93 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 a79238f3a0f..8c8ef7e02b4 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) |