xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/freedreno/a3xx/fd3_resource.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright © 2012 Rob Clark <[email protected]>
3  * Copyright © 2019 Khaled Emara <[email protected]>
4  * SPDX-License-Identifier: MIT
5  */
6 
7 #ifndef FD3_RESOURCE_H_
8 #define FD3_RESOURCE_H_
9 
10 #include "pipe/p_state.h"
11 
12 #include "freedreno_resource.h"
13 
14 uint32_t fd3_setup_slices(struct fd_resource *rsc);
15 unsigned fd3_tile_mode(const struct pipe_resource *tmpl);
16 
17 #endif /* FD3_RESOURCE_H_ */
18