1 /* 2 * Copyright © 2017 Rob Clark <[email protected]> 3 * SPDX-License-Identifier: MIT 4 * 5 * Authors: 6 * Rob Clark <[email protected]> 7 */ 8 9 #ifndef FD5_BLIT_H_ 10 #define FD5_BLIT_H_ 11 12 #include "pipe/p_state.h" 13 14 #include "freedreno_context.h" 15 16 bool fd5_blitter_blit(struct fd_context *ctx, 17 const struct pipe_blit_info *info); 18 unsigned fd5_tile_mode(const struct pipe_resource *tmpl); 19 20 #endif /* FD5_BLIT_H_ */ 21