xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/freedreno/a4xx/fd4_image.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
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 FD4_IMAGE_H_
10 #define FD4_IMAGE_H_
11 
12 #include "freedreno_context.h"
13 
14 struct ir3_shader_variant;
15 
16 void fd4_emit_images(struct fd_context *ctx, struct fd_ringbuffer *ring,
17       enum pipe_shader_type shader, const struct ir3_shader_variant *v);
18 
19 #endif /* FD4_IMAGE_H_ */
20