xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/r300/compiler/nir_to_rc.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright © 2014 Broadcom
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef NIR_TO_RC_H
7 #define NIR_TO_RC_H
8 
9 #include <stdbool.h>
10 #include "pipe/p_defines.h"
11 
12 struct nir_shader;
13 struct pipe_screen;
14 
15 const void *nir_to_rc(struct nir_shader *s,
16                       struct pipe_screen *screen);
17 
18 #endif /* NIR_TO_RC_H */
19