blob: 82bdaa123430fadd8384a45197858b8797d9edb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|