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