diff -r 8d4efe9fa1cf -r 3f914c77c2e9 hostsupport/hostopenvg/src/sfBlitter.cpp --- a/hostsupport/hostopenvg/src/sfBlitter.cpp Tue Oct 26 14:14:43 2010 +0100 +++ b/hostsupport/hostopenvg/src/sfBlitter.cpp Mon Nov 01 18:10:32 2010 +0000 @@ -20,9 +20,13 @@ * THE USE OR OTHER DEALINGS IN THE MATERIALS. */ -#include "sfBlitter.h" +#ifndef __SFDYNAMICBLITTER_H +#include "sfDynamicBlitter.h" +#endif +#if defined(RI_COMPILE_LLVM_BYTECODE) #include "sfCompiler.h" +#endif namespace OpenVGRI { @@ -108,7 +112,7 @@ void DynamicBlitter::blit() { -#if 1 +#if defined(RI_COMPILE_LLVM_BYTECODE) bool compiledBlitter = false; { PPCompiler& compiler = PPCompiler::getCompiler(); @@ -125,7 +129,7 @@ if (!compiledBlitter) #endif { - executeBlitter(getSignatureState(), getUniforms()); + OpenVGRI::executeBlitter(getSignatureState(), getUniforms()); } }