silence makedepend warnings about non-portable whitespace
authorAdam Jackson <ajax@freedesktop.org>
Sun, 23 Jan 2005 02:12:23 +0000 (02:12 +0000)
committerAdam Jackson <ajax@freedesktop.org>
Sun, 23 Jan 2005 02:12:23 +0000 (02:12 +0000)
src/mesa/drivers/dri/s3v/s3v_common.h
src/mesa/drivers/dri/s3v/s3v_macros.h
src/mesa/drivers/dri/s3v/s3v_tex.h

index 22f6014b2cfd80f2e76bc957483d757ba8c50b6c..b66cdf1df085d43715fc193b363e1fc8e2eb4059 100644 (file)
 /* #define S3V_BUF_4K 1 */
 
 #ifdef S3V_BUF_4K
-    #define S3V_DMA_BUF_ORDER 12
-    #define S3V_DMA_BUF_NR    256
+#define S3V_DMA_BUF_ORDER 12
+#define S3V_DMA_BUF_NR    256
 #else
-    #define S3V_DMA_BUF_ORDER 16 /* -much- better */
-    #define S3V_DMA_BUF_NR    16
+#define S3V_DMA_BUF_ORDER 16 /* -much- better */
+#define S3V_DMA_BUF_NR    16
 #endif
 /* on s3virge you can only choose between *
  * 4k (2^12) and 64k (2^16) dma bufs      */
index b54d506788daa355e44f3a917571faaa7fc02464..0779006cdcd157caa015bbfc8f616686ac9bafad 100644 (file)
 /* Note: The argument to DEBUG*() _must_ be enclosed in parenthesis */
 
 #if (GENERIC_DEBUG || FLOW_DEBUG || DMABUFS_DEBUG)
-       #include <stdio.h>
+#include <stdio.h>
 #endif
 
 #if GENERIC_DEBUG
-       #define DEBUG(str) printf str
+#define DEBUG(str) printf str
 #else
-       #define DEBUG(str)
+#define DEBUG(str)
 #endif
 
 #if FLOW_DEBUG
-       #define DEBUG_WHERE(str) printf str
+#define DEBUG_WHERE(str) printf str
 #else
-       #define DEBUG_WHERE(str)
+#define DEBUG_WHERE(str)
 #endif
 
 #if DMABUFS_DEBUG
-       #define DEBUG_BUFS(str) printf str
+#define DEBUG_BUFS(str) printf str
 #else
-       #define DEBUG_BUFS(str)
+#define DEBUG_BUFS(str)
 #endif
 
 
index 201ab034692e50c7633914a46cc09613f6bf2fd9..a823fe245316e3922c7e42872e5b81256bddd7f3 100644 (file)
@@ -10,9 +10,9 @@
 extern void s3vUpdateTexLRU( s3vContextPtr vmesa, s3vTextureObjectPtr t );
 
 #if TEX_DEBUG_ON
-        #define DEBUG_TEX(str) printf str
+#define DEBUG_TEX(str) printf str
 #else
-        #define DEBUG_TEX(str) /* str */
+#define DEBUG_TEX(str) /* str */
 #endif
 
 #define _TEXFLUSH 1 /* flush before uploading */