Mesa (gallium-0.2): gallium: Disable memory debugging for Windows OGL.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed Jan 14 11:40:30 UTC 2009


Module: Mesa
Branch: gallium-0.2
Commit: d96c89e57916ffcc72742107caaa3a90f2b78a80
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d96c89e57916ffcc72742107caaa3a90f2b78a80

Author: José Fonseca <jfonseca at vmware.com>
Date:   Wed Jan 14 11:39:12 2009 +0000

gallium: Disable memory debugging for Windows OGL.

Unfortunately both Mesa and Gallium use the same defines for memory
allocation (MALLOC, FREE, etc), and worse, some times memory is allocated
with one set and freed with the other set, causing the homegrown memory
debugger to trip on itself.

In the future mesa and gallium should use different names, but for now,
memory debugging on Windows will have to be carried with different tools..

---

 src/gallium/auxiliary/util/u_memory.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_memory.h b/src/gallium/auxiliary/util/u_memory.h
index 626b13a..1a6b596 100644
--- a/src/gallium/auxiliary/util/u_memory.h
+++ b/src/gallium/auxiliary/util/u_memory.h
@@ -52,7 +52,7 @@ extern "C" {
 #endif
 
 
-#if defined(PIPE_OS_WINDOWS) && defined(DEBUG) 
+#if defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) && defined(DEBUG) 
 
 /* memory debugging */
 




More information about the mesa-commit mailing list