summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r600/r600_blit.h
blob: f30c13c288d518f669b3a880a9ff2c97d5ac8b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
GLboolean r600_blit(context_t *context,
                    struct radeon_bo *src_bo,
                    intptr_t src_offset,
                    gl_format src_mesaformat,
                    unsigned src_pitch,
                    unsigned src_width,
                    unsigned src_height,
                    unsigned src_x_offset,
                    unsigned src_y_offset,
                    struct radeon_bo *dst_bo,
                    intptr_t dst_offset,
                    gl_format dst_mesaformat,
                    unsigned dst_pitch,
                    unsigned dst_width,
                    unsigned dst_height,
                    unsigned dst_x_offset,
                    unsigned dst_y_offset,
                    unsigned w,
                    unsigned h,
                    unsigned flip_y);