gallium: fix/update tex target dumping
[mesa.git] / src / gallium / auxiliary / util / u_rect.h
index fba480886416834a080dcdad549b6ebb8ef44895..40d57e662d7e3ec1a7ebe96e2e1981ec7e31b899 100644 (file)
 
 
 extern void
-pipe_copy_rect(ubyte * dst, const struct pipe_format_block *block,
+util_copy_rect(ubyte * dst, enum pipe_format format,
                unsigned dst_stride, unsigned dst_x, unsigned dst_y,
                unsigned width, unsigned height, const ubyte * src,
-               int src_stride, unsigned src_x, int src_y);
+               int src_stride, unsigned src_x, unsigned src_y);
 
 extern void
-pipe_fill_rect(ubyte * dst, const struct pipe_format_block *block,
+util_fill_rect(ubyte * dst, enum pipe_format format,
                unsigned dst_stride, unsigned dst_x, unsigned dst_y,
                unsigned width, unsigned height, uint32_t value);
 
 
-
 #endif /* U_RECT_H */