blob: 073ffb5749a71e8f1d7553e46a6dd60bfa157c39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef TGSITOLLVM_H
#define TGSITOLLVM_H
namespace llvm {
class Module;
}
struct gallivm_ir;
struct tgsi_token;
llvm::Module * tgsi_to_llvm(struct gallivm_ir *ir,
const struct tgsi_token *tokens);
#endif
|