summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_debug.h
diff options
context:
space:
mode:
authorPauli Nieminen <suokkos@gmail.com>2009-08-30 19:44:16 +0300
committerPauli Nieminen <suokkos@gmail.com>2009-08-31 20:27:48 +0300
commit4e0d99a63588c67a955f797733da32d04e6f4ee6 (patch)
tree07be8eb1fae6557fad356cce8ade953eb70ec54d /src/mesa/drivers/dri/radeon/radeon_debug.h
parentf9a4a0a9710c23a2041673eec290ff2f9260cbd0 (diff)
r100: Use shared debug code.
Converted r100 to use shared debug code with sed and fast compile check. New code has compability layer so old debugging code doesn't have to be changed all immidiatly.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_debug.h')
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_debug.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_debug.h b/src/mesa/drivers/dri/radeon/radeon_debug.h
index 63827103d5..ace8a99e26 100644
--- a/src/mesa/drivers/dri/radeon/radeon_debug.h
+++ b/src/mesa/drivers/dri/radeon/radeon_debug.h
@@ -49,22 +49,23 @@ typedef enum radeon_debug_levels {
#endif
typedef enum radeon_debug_types {
- RADEON_TEXTURE = 0x0001,
- RADEON_STATE = 0x0002,
- RADEON_IOCTL = 0x0004,
- RADEON_RENDER = 0x0008,
- RADEON_SWRENDER = 0x0010,
- RADEON_FALLBACKS = 0x0020,
- RADEON_VFMT = 0x0040,
- RADEON_SHADER = 0x0080,
- RADEON_CS = 0x0100,
- RADEON_DRI = 0x0200,
- RADEON_DMA = 0x0400,
- RADEON_SANITY = 0x0800,
- RADEON_SYNC = 0x1000,
- RADEON_PIXEL = 0x2000,
- RADEON_MEMORY = 0x4000,
- RADEON_GENERAL = 0x8000 /* Used for errors and warnings */
+ RADEON_TEXTURE = 0x00001,
+ RADEON_STATE = 0x00002,
+ RADEON_IOCTL = 0x00004,
+ RADEON_RENDER = 0x00008,
+ RADEON_SWRENDER = 0x00010,
+ RADEON_FALLBACKS = 0x00020,
+ RADEON_VFMT = 0x00040,
+ RADEON_SHADER = 0x00080,
+ RADEON_CS = 0x00100,
+ RADEON_DRI = 0x00200,
+ RADEON_DMA = 0x00400,
+ RADEON_SANITY = 0x00800,
+ RADEON_SYNC = 0x01000,
+ RADEON_PIXEL = 0x02000,
+ RADEON_MEMORY = 0x04000,
+ RADEON_VERTS = 0x08000,
+ RADEON_GENERAL = 0x10000 /* Used for errors and warnings */
} radeon_debug_type_t;
extern radeon_debug_type_t radeon_enabled_debug_types;