gallium: make vbuf_render::set_primitive() return void
[mesa.git] / src / gallium / drivers / llvmpipe / lp_flush.h
index e516cee37896d95f08806c7078cd414db12e384c..efff94c8c0cfe08c4cf1249e7f65a372aabfc44c 100644 (file)
 
 struct pipe_context;
 struct pipe_fence_handle;
+struct pipe_resource;
 
-void llvmpipe_flush(struct pipe_context *pipe, unsigned flags,
-                    struct pipe_fence_handle **fence);
+void
+llvmpipe_flush(struct pipe_context *pipe,
+               struct pipe_fence_handle **fence,
+               const char *reason);
+
+void
+llvmpipe_finish( struct pipe_context *pipe,
+                 const char *reason );
 
 boolean
 llvmpipe_flush_resource(struct pipe_context *pipe,
-                       struct pipe_resource *texture,
-                       unsigned face,
-                       unsigned level,
-                       unsigned flush_flags,
-                       boolean read_only,
-                       boolean cpu_access,
-                       boolean do_not_flush);
+                        struct pipe_resource *resource,
+                        unsigned level,
+                        int layer,
+                        boolean read_only,
+                        boolean cpu_access,
+                        boolean do_not_block,
+                        const char *reason);
 
 #endif