• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 struct r300_fragment_program_external_state;
15 
16 const void *nir_to_rc(struct nir_shader *s, struct pipe_screen *screen,
17                       struct r300_fragment_program_external_state state);
18 
19 #endif /* NIR_TO_RC_H */
20