diff options
author | Brian Paul <[email protected]> | 2008-08-22 16:19:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-22 16:19:22 -0600 |
commit | fe1e39afbb147deab60ecc932c24f921b46f1364 (patch) | |
tree | 4f19b3bfc111650f7968e17147e4595fe01cc7c6 /src/gallium/include | |
parent | a13475ff0057f1de8e3bc08d6ca42b9e135a3f5a (diff) |
gallium: move pipe_copy_rect(), pipe_fill_rect() protos into new u_rect.h header
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_util.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gallium/include/pipe/p_util.h b/src/gallium/include/pipe/p_util.h index cac0039e123..4a3fca59621 100644 --- a/src/gallium/include/pipe/p_util.h +++ b/src/gallium/include/pipe/p_util.h @@ -31,7 +31,6 @@ #include "p_config.h" #include "p_compiler.h" #include "p_debug.h" -#include "p_format.h" #include "p_pointer.h" #if defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT) @@ -400,18 +399,6 @@ do { \ } while (0) -/* util/p_util.c - */ -extern void pipe_copy_rect(ubyte * dst, const struct pipe_format_block *block, - 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); - -extern void -pipe_fill_rect(ubyte * dst, const struct pipe_format_block *block, - unsigned dst_stride, unsigned dst_x, unsigned dst_y, - unsigned width, unsigned height, uint32_t value); - #if defined(_MSC_VER) #if _MSC_VER < 1400 && !defined(__cplusplus) || defined(PIPE_SUBSYSTEM_WINDOWS_CE) |