st/mesa: Make st_cb_blit.h FEATURE_EXT_framebuffer_blit aware.
authorChia-I Wu <olv@lunarg.com>
Wed, 31 Mar 2010 04:33:26 +0000 (12:33 +0800)
committerChia-I Wu <olv@lunarg.com>
Wed, 12 May 2010 04:12:58 +0000 (12:12 +0800)
This change allows st_cb_blit.h to be used without knowing if
FEATURE_EXT_framebuffer_blit is enabled.

src/mesa/state_tracker/st_cb_blit.c
src/mesa/state_tracker/st_cb_blit.h
src/mesa/state_tracker/st_context.c

index 1c8dc0c07fb1b19c4cb75edacb0483d83167bdae..97b19b20c3535149002127be9d30102f11894ce0 100644 (file)
@@ -60,6 +60,7 @@ st_destroy_blit(struct st_context *st)
 
 
 #if FEATURE_EXT_framebuffer_blit
+
 static void
 st_BlitFramebuffer(GLcontext *ctx,
                    GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
@@ -207,14 +208,12 @@ st_BlitFramebuffer(GLcontext *ctx,
       }
    }
 }
-#endif /* FEATURE_EXT_framebuffer_blit */
-
 
 
 void
 st_init_blit_functions(struct dd_function_table *functions)
 {
-#if FEATURE_EXT_framebuffer_blit
    functions->BlitFramebuffer = st_BlitFramebuffer;
-#endif
 }
+
+#endif /* FEATURE_EXT_framebuffer_blit */
index ed22986b531ba749f0685164d33be36f63336e07..7ab9a54df90d02c4434887772801021502dac738 100644 (file)
 #define ST_CB_BLIT_H
 
 
+#include "main/mtypes.h"
 #include "st_context.h"
 
 
-
 extern void
 st_init_blit(struct st_context *st);
 
 extern void
 st_destroy_blit(struct st_context *st);
 
+#if FEATURE_EXT_framebuffer_blit
+
 extern void
 st_init_blit_functions(struct dd_function_table *functions);
 
+#else
+
+static INLINE void
+st_init_blit_functions(struct dd_function_table *functions)
+{
+}
+
+#endif /* FEATURE_EXT_framebuffer_blit */
 
 #endif /* ST_CB_BLIT_H */
index f3b436fecdf8af9e342a4d3417c811299e089fcb..08963b468c991845017a29a453d44a0eea32b5af 100644 (file)
@@ -212,9 +212,7 @@ static void st_destroy_context_priv( struct st_context *st )
    st_destroy_atoms( st );
    st_destroy_draw( st );
    st_destroy_generate_mipmap(st);
-#if FEATURE_EXT_framebuffer_blit
    st_destroy_blit(st);
-#endif
    st_destroy_clear(st);
    st_destroy_bitmap(st);
    st_destroy_drawpix(st);
@@ -281,9 +279,7 @@ void st_init_driver_functions(struct dd_function_table *functions)
    _mesa_init_glsl_driver_functions(functions);
 
    st_init_accum_functions(functions);
-#if FEATURE_EXT_framebuffer_blit
    st_init_blit_functions(functions);
-#endif
    st_init_bufferobject_functions(functions);
    st_init_clear_functions(functions);
    st_init_bitmap_functions(functions);