diff options
Diffstat (limited to 'src/panfrost/shared/pan_tiling.h')
-rw-r--r-- | src/panfrost/shared/pan_tiling.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/panfrost/shared/pan_tiling.h b/src/panfrost/shared/pan_tiling.h index 1d55939ecbd..e13d50c41e4 100644 --- a/src/panfrost/shared/pan_tiling.h +++ b/src/panfrost/shared/pan_tiling.h @@ -27,16 +27,18 @@ #ifndef H_PANFROST_TILING #define H_PANFROST_TILING -#include "util/u_box.h" +#include <stdint.h> void panfrost_load_tiled_image(void *dst, const void *src, - const struct pipe_box *box, + unsigned x, unsigned y, + unsigned w, unsigned h, uint32_t dst_stride, uint32_t src_stride, uint32_t bpp); void panfrost_store_tiled_image(void *dst, const void *src, - const struct pipe_box *box, + unsigned x, unsigned y, + unsigned w, unsigned h, uint32_t dst_stride, uint32_t src_stride, uint32_t bpp); |