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