OpenCL: added opencl=true option to scons and fixed the case on the way.

Add ifdef for osx ocl include.



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4348 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-09-30 06:49:08 +00:00
parent aa1fd81e37
commit ffe12ec752
4 changed files with 41 additions and 18 deletions

View File

@ -16,7 +16,12 @@
// http://code.google.com/p/dolphin-emu/
#include "TextureDecoder.h"
#ifdef __APPLE__
#include <OpenCL/opencl.h>
#else
#include <CL/cl.h>
#endif
#include <fcntl.h>
#include <stdio.h>