summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965simple/brw_blit.h
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-09-29 10:22:15 -0700
committerJakob Bornecrantz <jakob@vmware.com>2009-10-05 19:48:03 +0100
commitc4b821a4c64d75d944653d665bede946763ed95b (patch)
tree7944e34757eebd8a73a2a68c374d7749d661549a /src/gallium/drivers/i965simple/brw_blit.h
parent1f39d59a2996e2acf6893a8dd1a0293bd8790cc2 (diff)
i965g: Drop i965simple
The driver never work with real hardware and has bitrotted for quite some time now, might as well drop it. If somebody wants to look at it just use git.
Diffstat (limited to 'src/gallium/drivers/i965simple/brw_blit.h')
-rw-r--r--src/gallium/drivers/i965simple/brw_blit.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/gallium/drivers/i965simple/brw_blit.h b/src/gallium/drivers/i965simple/brw_blit.h
deleted file mode 100644
index 111c5d91d3..0000000000
--- a/src/gallium/drivers/i965simple/brw_blit.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef BRW_BLIT_H
-#define BRW_BLIT_H
-
-#include "pipe/p_compiler.h"
-
-struct pipe_buffer;
-struct brw_context;
-
-void brw_fill_blit(struct brw_context *intel,
- unsigned cpp,
- short dst_pitch,
- struct pipe_buffer *dst_buffer,
- unsigned dst_offset,
- boolean dst_tiled,
- short x, short y,
- short w, short h,
- unsigned color);
-void brw_copy_blit(struct brw_context *intel,
- unsigned do_flip,
- unsigned cpp,
- short src_pitch,
- struct pipe_buffer *src_buffer,
- unsigned src_offset,
- boolean src_tiled,
- short dst_pitch,
- struct pipe_buffer *dst_buffer,
- unsigned dst_offset,
- boolean dst_tiled,
- short src_x, short src_y,
- short dst_x, short dst_y,
- short w, short h,
- unsigned logic_op);
-#endif