r300: Fix errant inlines.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Wed, 14 Jan 2009 20:51:47 +0000 (12:51 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 2 Feb 2009 07:30:23 +0000 (23:30 -0800)
This should unbreak dynamic loading.

src/gallium/drivers/r300/r300_context.h
src/gallium/drivers/r300/r300_screen.h

index 40c310a..0551275 100644 (file)
@@ -27,6 +27,8 @@
 #include "pipe/p_context.h"
 #include "util/u_memory.h"
 
+#include "r300_screen.h"
+
 struct r300_blend_state {
     uint32_t blend_control;       /* R300_RB3D_BLENDCNTL: 0x4e04 */
     uint32_t alpha_blend_control; /* R300_RB3D_ABLENDCNTL: 0x4e08 */
@@ -82,4 +84,4 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,
                                          struct pipe_winsys* winsys,
                                          struct r300_winsys* r300_winsys);
 
-#endif /* R300_CONTEXT_H */
\ No newline at end of file
+#endif /* R300_CONTEXT_H */
index 36fc5aa..a1b97f2 100644 (file)
 #ifndef R300_SCREEN_H
 #define R300_SCREEN_H
 
+#include "pipe/p_inlines.h"
 #include "pipe/p_screen.h"
 #include "util/u_memory.h"
 
-#include "r300_context.h"
-
 struct r300_screen {
     /* Parent class */
     struct pipe_screen screen;