glsl: add ir_emit_vertex and ir_end_primitive instruction types
[mesa.git] / src / mesa / state_tracker / st_cb_bitmap.h
index 81cf61981dc394fa5197745bbe3020fd0a0a29ca..cc9f5f57464051dbfd4b803b4edfa0d1c0064d99 100644 (file)
 #define ST_CB_BITMAP_H
 
 
+#include "main/compiler.h"
+
+struct dd_function_table;
+struct st_context;
+struct gl_fragment_program;
+struct st_fragment_program;
+
 extern void
 st_init_bitmap_functions(struct dd_function_table *functions);
 
@@ -40,13 +47,13 @@ extern void
 st_destroy_bitmap(struct st_context *st);
 
 extern void
-st_flush_bitmap_cache(struct st_context *st);
+st_make_bitmap_fragment_program(struct st_context *st,
+                                struct gl_fragment_program *fpIn,
+                                struct gl_fragment_program **fpOut,
+                                GLuint *bitmap_sampler);
 
-/* Flush bitmap cache and release vertex buffer.  Needed at end of
- * frame to avoid synchronous rendering.
- */
 extern void
-st_flush_bitmap(struct st_context *st);
+st_flush_bitmap_cache(struct st_context *st);
 
 
 #endif /* ST_CB_BITMAP_H */