/* * Copyright © 2025 Lucas Francisco Fryzek * SPDX-License-Identifier: MIT */ #ifndef FGCC_PRIAVTE_H #define FGCC_PRIVATE_H 1 #include "fgcc.h" #include "nir.h" #include "fg_device_info.h" #ifdef __cplusplus extern "C" { #endif struct fgcc_compiler { struct nir_shader_compiler_options nir_options; }; #ifdef __cplusplus } #endif #endif