Michaël Lemaire
49c6c17118
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@469 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
20 lines
235 B
C
20 lines
235 B
C
#ifndef _PAYSAGES_OPENCL_H_
|
|
#define _PAYSAGES_OPENCL_H_
|
|
|
|
/* OpenCL usage */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "noise.h"
|
|
|
|
void openclInit();
|
|
int openclAvailable();
|
|
void openclQuit();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|