diff options
Diffstat (limited to 'src/frygon/compiler/fgcc_private.h')
| -rw-r--r-- | src/frygon/compiler/fgcc_private.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/frygon/compiler/fgcc_private.h b/src/frygon/compiler/fgcc_private.h new file mode 100644 index 00000000000..82bdaa12343 --- /dev/null +++ b/src/frygon/compiler/fgcc_private.h @@ -0,0 +1,24 @@ +/* + * 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 |