Dynamically load OpenCL on Windows with CLRun. There shouldn't be the need to make a separate build now or download a big SDK to link Dolphin.

If compilation fails, rebuild the whole solution as Visual Studio struggles with the not so complex project dependencies.
ATI users still need to install the Stream SDK as it's the only way to have an OpenCL driver.
NVidia users just have to install a recent driver (version 197 is tested and working).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5808 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Orphis
2010-06-29 02:23:09 +00:00
parent 374999d750
commit 685bae34e5
17 changed files with 3236 additions and 13 deletions

25
Externals/CLRun/include/clrun.h vendored Normal file
View File

@ -0,0 +1,25 @@
#ifndef __CLRUN_H
#define __CLRUN_H
/*#ifdef _WIN32
#ifdef CLRUN_COMPILE
#define EXPORTED __declspec(dllexport)
#else
#define EXPORTED __declspec(dllimport)
#endif
#else*/
#define EXPORTED
//#endif
#ifdef __cplusplus
extern "C" {
#endif
extern EXPORTED int clrInit();
extern EXPORTED int clrHasOpenCL();
#ifdef __cplusplus
};
#endif
#endif