diff options
author | Adam Rak <[email protected]> | 2011-11-30 22:20:41 +0100 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-06-01 11:28:10 -0400 |
commit | 6a829a1b724ca0d960decee217d260b4de8a5463 (patch) | |
tree | 0bc6a96e7a7151ba50aa391e94ca6f0adfc37376 /src/gallium/drivers/r600/llvm_wrapper.h | |
parent | 46a13b3b11d859e131399853c11ae2be0eb02f0a (diff) |
r600g: compute support for evergreen
Tom Stellard:
- Updated for gallium interface changes
- Fixed a few bugs:
+ Set the loop counter
+ Calculate the correct number of pipes
- Added hooks into the LLVM compiler
Diffstat (limited to 'src/gallium/drivers/r600/llvm_wrapper.h')
-rw-r--r-- | src/gallium/drivers/r600/llvm_wrapper.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/llvm_wrapper.h b/src/gallium/drivers/r600/llvm_wrapper.h new file mode 100644 index 00000000000..3a696455cdf --- /dev/null +++ b/src/gallium/drivers/r600/llvm_wrapper.h @@ -0,0 +1,16 @@ +#ifndef LLVM_WRAPPER_H +#define LLVM_WRAPPER_H + +#include <llvm-c/Core.h> + +#ifdef __cplusplus +extern "C" { +#endif + +LLVMModuleRef llvm_parse_bitcode(const unsigned char * bitcode, unsigned bitcode_len); + +#ifdef __cplusplus +} +#endif + +#endif |