Mesa (master): r300g: Readd trace driver support

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Thu Jul 2 13:08:56 UTC 2009


Module: Mesa
Branch: master
Commit: d1c8a0a30860ab6cd4a50582972fb185766595bd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d1c8a0a30860ab6cd4a50582972fb185766595bd

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Thu Jul  2 15:05:51 2009 +0200

r300g: Readd trace driver support

---

 src/gallium/winsys/drm/radeon/core/radeon_drm.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/gallium/winsys/drm/radeon/core/radeon_drm.c b/src/gallium/winsys/drm/radeon/core/radeon_drm.c
index 556d3f5..4cad960 100644
--- a/src/gallium/winsys/drm/radeon/core/radeon_drm.c
+++ b/src/gallium/winsys/drm/radeon/core/radeon_drm.c
@@ -29,6 +29,7 @@
  */
 
 #include "radeon_drm.h"
+#include "trace/tr_drm.h"
 
 /* Create a pipe_screen. */
 struct pipe_screen* radeon_create_screen(struct drm_api* api,
@@ -130,5 +131,9 @@ struct drm_api drm_api_hooks = {
 
 struct drm_api* drm_api_create()
 {
+#ifdef DEBUG
+    return trace_drm_create(&drm_api_hooks);
+#else
     return &drm_api_hooks;
+#endif
 }




More information about the mesa-commit mailing list