r300g: reorder parts of translate_texformat
[mesa.git] / src / gallium / drivers / llvmpipe / lp_flush.h
index 7b605681a935e51cc06bfab3cf69c45bcda5b10b..579d24c68ad185b2398070c4d0689c213f088bd6 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);
+llvmpipe_flush(struct pipe_context *pipe,
+               unsigned flags,
+               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 *resource,
-                        unsigned face,
                         unsigned level,
+                        int layer,
                         unsigned flush_flags,
                         boolean read_only,
                         boolean cpu_access,
-                        boolean do_not_block);
+                        boolean do_not_block,
+                        const char *reason);
 
 #endif