Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5564 serge 1
 
2
#define R600_LLVM_H
3
4
 
5
6
 
7
#include 
8
9
 
10
struct r600_shader_ctx;
11
struct radeon_llvm_context;
12
struct radeon_shader_binary;
13
enum radeon_family;
14
15
 
16
	struct radeon_llvm_context * ctx,
17
	const struct tgsi_token * tokens);
18
19
 
20
	LLVMModuleRef mod,
21
	enum radeon_family family,
22
	struct r600_bytecode *bc,
23
	boolean *use_kill,
24
	unsigned dump);
25
26
 
27
		const struct radeon_shader_binary *binary,
28
		boolean *use_kill);
29
30
 
31
		struct r600_bytecode *bc,
32
		uint64_t symbol_offset,
33
		boolean *use_kill);
34
35
 
36
37
 
38