summaryrefslogtreecommitdiff
path: root/src/gallium/targets/dri-vmwgfx
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-06-24 01:53:05 +0200
committerJakob Bornecrantz <jakob@vmware.com>2010-06-24 02:19:43 +0200
commit57d14f2fbbfc50656be76fa0f77e1ed505180204 (patch)
treed927264c83d9a36aa3ccc2cd141108ac02152e62 /src/gallium/targets/dri-vmwgfx
parentea1786ec5b1385fe26927e206ca81d87ca70ca6a (diff)
gallium: Use debugging helper in all drm targets
Diffstat (limited to 'src/gallium/targets/dri-vmwgfx')
-rw-r--r--src/gallium/targets/dri-vmwgfx/Makefile3
-rw-r--r--src/gallium/targets/dri-vmwgfx/SConscript2
-rw-r--r--src/gallium/targets/dri-vmwgfx/target.c11
3 files changed, 15 insertions, 1 deletions
diff --git a/src/gallium/targets/dri-vmwgfx/Makefile b/src/gallium/targets/dri-vmwgfx/Makefile
index 8e3cd6ff28..97c703b373 100644
--- a/src/gallium/targets/dri-vmwgfx/Makefile
+++ b/src/gallium/targets/dri-vmwgfx/Makefile
@@ -14,6 +14,9 @@ C_SOURCES = \
target.c \
$(COMMON_GALLIUM_SOURCES)
+DRIVER_DEFINES = \
+ -DGALLIUM_RBUG -DGALLIUM_TRACE
+
include ../Makefile.dri
symlinks:
diff --git a/src/gallium/targets/dri-vmwgfx/SConscript b/src/gallium/targets/dri-vmwgfx/SConscript
index 3d0c5495da..7afabc7429 100644
--- a/src/gallium/targets/dri-vmwgfx/SConscript
+++ b/src/gallium/targets/dri-vmwgfx/SConscript
@@ -6,6 +6,8 @@ if not 'svga' in env['drivers']:
env = drienv.Clone()
+env.Append(CPPDEFINES = ['GALLIUM_RBUG', 'GALLIUM_TRACE'])
+
env.Prepend(LIBS = [
st_dri,
svgadrm,
diff --git a/src/gallium/targets/dri-vmwgfx/target.c b/src/gallium/targets/dri-vmwgfx/target.c
index 5f69653582..15089d6db2 100644
--- a/src/gallium/targets/dri-vmwgfx/target.c
+++ b/src/gallium/targets/dri-vmwgfx/target.c
@@ -1,4 +1,5 @@
+#include "target-helpers/inline_debug_helper.h"
#include "state_tracker/drm_driver.h"
#include "svga/drm/svga_drm_public.h"
#include "svga/svga_public.h"
@@ -7,11 +8,19 @@ static struct pipe_screen *
create_screen(int fd)
{
struct svga_winsys_screen *sws;
+ struct pipe_screen *screen;
+
sws = svga_drm_winsys_screen_create(fd);
if (!sws)
return NULL;
- return svga_screen_create(sws);
+ screen = svga_screen_create(sws);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
}
DRM_DRIVER_DESCRIPTOR("vmwgfx", "vmwgfx", create_screen)