diff options
| author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-11-24 19:39:30 -0500 |
|---|---|---|
| committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-11-24 19:39:30 -0500 |
| commit | b5f3587df4048d2ba807721ff2faea8c8a43a93f (patch) | |
| tree | 6913f730a41822b98fecd5e82b7cae46164fd9c0 /src/frygon/compiler/fgcc_private.h | |
| parent | 41c700fdbf1d79dfb571105ee93bfa46da6c8428 (diff) | |
WIPfrygon
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 |