summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/xlib
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-08 23:11:56 +0100
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-09 14:10:24 +0100
commit6c7aff209ca3b310008dd345836ebc020d2db004 (patch)
tree44548715ebecf238714b7d6a100fae7420590110 /src/gallium/winsys/xlib
parentfcfe63805d1a4b1815dec7d85a21772d02ac12b8 (diff)
trace: Trace pipe_winsys calls.
Diffstat (limited to 'src/gallium/winsys/xlib')
-rw-r--r--src/gallium/winsys/xlib/xm_winsys.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/winsys/xlib/xm_winsys.c b/src/gallium/winsys/xlib/xm_winsys.c
index 5a01b6167b..6071a5ad5e 100644
--- a/src/gallium/winsys/xlib/xm_winsys.c
+++ b/src/gallium/winsys/xlib/xm_winsys.c
@@ -55,6 +55,7 @@
#endif
#ifdef GALLIUM_TRACE
+#include "trace/tr_winsys.h"
#include "trace/tr_screen.h"
#include "trace/tr_context.h"
#endif
@@ -650,7 +651,11 @@ xmesa_get_pipe_winsys(struct xmesa_visual *xm_vis)
ws->base.get_name = xm_get_name;
}
- return &ws->base;
+#ifdef GALLIUM_TRACE
+ return trace_winsys_create(&ws->base);
+#else
+ return &ws->base;
+#endif
}