diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2010-06-24 01:53:05 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2010-06-24 02:19:43 +0200 |
commit | 57d14f2fbbfc50656be76fa0f77e1ed505180204 (patch) | |
tree | d927264c83d9a36aa3ccc2cd141108ac02152e62 /src/gallium/targets/xorg-i965 | |
parent | ea1786ec5b1385fe26927e206ca81d87ca70ca6a (diff) |
gallium: Use debugging helper in all drm targets
Diffstat (limited to 'src/gallium/targets/xorg-i965')
-rw-r--r-- | src/gallium/targets/xorg-i965/Makefile | 3 | ||||
-rw-r--r-- | src/gallium/targets/xorg-i965/intel_target.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/targets/xorg-i965/Makefile b/src/gallium/targets/xorg-i965/Makefile index eede9f2325..9bb8252be2 100644 --- a/src/gallium/targets/xorg-i965/Makefile +++ b/src/gallium/targets/xorg-i965/Makefile @@ -8,7 +8,8 @@ C_SOURCES = \ intel_xorg.c DRIVER_DEFINES = \ - -DHAVE_CONFIG_H -DGALLIUM_SOFTPIPE + -DHAVE_CONFIG_H -DGALLIUM_SOFTPIPE \ + -DGALLIUM_RBUG -DGALLIUM_TRACE DRIVER_LINKS = \ $(TOP)/src/gallium/state_trackers/xorg/libxorgtracker.a \ diff --git a/src/gallium/targets/xorg-i965/intel_target.c b/src/gallium/targets/xorg-i965/intel_target.c index 36424c60a1..ce97f82027 100644 --- a/src/gallium/targets/xorg-i965/intel_target.c +++ b/src/gallium/targets/xorg-i965/intel_target.c @@ -1,5 +1,6 @@ #include "target-helpers/inline_wrapper_sw_helper.h" +#include "target-helpers/inline_debug_helper.h" #include "state_tracker/drm_driver.h" #include "i965/drm/i965_drm_public.h" #include "i965/brw_public.h" @@ -21,6 +22,8 @@ create_screen(int fd) if (debug_get_bool_option("BRW_SOFTPIPE", FALSE)) screen = sw_screen_wrap(screen); + screen = debug_screen_wrap(screen); + return screen; } |