Squashed commit of the following:
[mesa.git] / src / gallium / drivers / r300 / r300_screen.h
index a055159c93b783b2e0ae2ce4fc2ff4d6e17e4317..2f951c7097c047ca9375e8c7ac6ac123ae2c9ba4 100644 (file)
@@ -28,6 +28,8 @@
 
 #include "r300_chipset.h"
 
+#include <stdio.h>
+
 struct r300_screen {
     /* Parent class */
     struct pipe_screen screen;
@@ -35,7 +37,7 @@ struct r300_screen {
     struct r300_winsys_screen *rws;
 
     /* Chipset capabilities */
-    struct r300_capabilities* caps;
+    struct r300_capabilities caps;
 
     /** Combination of DBG_xxx flags */
     unsigned debug;
@@ -80,12 +82,14 @@ static INLINE void SCREEN_DBG(struct r300_screen * screen, unsigned flags,
     if (SCREEN_DBG_ON(screen, flags)) {
         va_list va;
         va_start(va, fmt);
-        debug_vprintf(fmt, va);
+        vfprintf(stderr, fmt, va);
         va_end(va);
     }
 }
 
 void r300_init_debug(struct r300_screen* ctx);
 
+void r300_init_screen_resource_functions(struct r300_screen *r300screen);
+
 #endif /* R300_SCREEN_H */