xref: /aosp_15_r20/external/mesa3d/src/intel/compiler/elk/elk_nir_options.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright 2024 Intel Corporation
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef ELK_NIR_OPTIONS_H
7 #define ELK_NIR_OPTIONS_H
8 
9 #include "nir.h"
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 extern const struct nir_shader_compiler_options elk_scalar_nir_options;
16 extern const struct nir_shader_compiler_options elk_vector_nir_options;
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* ELK_NIR_OPTIONS_H */
23