gallium/tgsi: Add a helper for initializing ureg from a shader_info.
[mesa.git] / src / mesa / state_tracker / st_debug.h
index e14360937a9f7b9e65126cad6e8f95d1e55aab66..6e4b397da0dc6dfa78eeae4a045ae12e6ea7f851 100644 (file)
 
 struct st_context;
 
-extern void
-st_print_current(void);
-
-
 #define DEBUG_MESA      0x1
-#define DEBUG_TGSI      0x2
+#define DEBUG_PRINT_IR  0x2
 #define DEBUG_CONSTANTS 0x4
 #define DEBUG_PIPE      0x8
 #define DEBUG_TEX       0x10
@@ -53,17 +49,11 @@ st_print_current(void);
 #define DEBUG_GREMEDY   0x1000
 #define DEBUG_NOREADPIXCACHE 0x2000
 
-#ifdef DEBUG
 extern int ST_DEBUG;
-#define DBSTR(x) x
-#else
-#define ST_DEBUG 0
-#define DBSTR(x) ""
-#endif
 
 void st_debug_init( void );
 
-void st_enable_debug_output(struct st_context *st, boolean enable);
+void st_update_debug_callback(struct st_context *st);
 
 static inline void
 ST_DBG( unsigned flag, const char *fmt, ... )