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/egl-radeon | |
parent | ea1786ec5b1385fe26927e206ca81d87ca70ca6a (diff) |
gallium: Use debugging helper in all drm targets
Diffstat (limited to 'src/gallium/targets/egl-radeon')
-rw-r--r-- | src/gallium/targets/egl-radeon/Makefile | 3 | ||||
-rw-r--r-- | src/gallium/targets/egl-radeon/target.c | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/gallium/targets/egl-radeon/Makefile b/src/gallium/targets/egl-radeon/Makefile index c988b48cd0..2adc027b8f 100644 --- a/src/gallium/targets/egl-radeon/Makefile +++ b/src/gallium/targets/egl-radeon/Makefile @@ -5,6 +5,9 @@ EGL_DRIVER_NAME = radeon EGL_DRIVER_SOURCES = target.c EGL_DRIVER_LIBS = -ldrm_radeon +EGL_DRIVER_DEFINES = \ + -DGALLIUM_RBUG -DGALLIUM_TRACE + EGL_DRIVER_PIPES = \ $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \ $(TOP)/src/gallium/drivers/trace/libtrace.a \ diff --git a/src/gallium/targets/egl-radeon/target.c b/src/gallium/targets/egl-radeon/target.c index 5117eb86f9..ce07327b8f 100644 --- a/src/gallium/targets/egl-radeon/target.c +++ b/src/gallium/targets/egl-radeon/target.c @@ -1,4 +1,5 @@ +#include "target-helpers/inline_debug_helper.h" #include "state_tracker/drm_driver.h" #include "radeon/drm/radeon_drm_public.h" #include "r300/r300_public.h" @@ -7,11 +8,19 @@ static struct pipe_screen * create_screen(int fd) { struct r300_winsys_screen *sws; + struct pipe_screen *screen; + sws = r300_drm_winsys_screen_create(fd); if (!sws) return NULL; - return r300_screen_create(sws); + screen = r300_screen_create(sws); + if (!screen) + return NULL; + + screen = debug_screen_wrap(screen); + + return screen; } DRM_DRIVER_DESCRIPTOR("radeon", "radeon", create_screen) |