Ejemplo n.º 1
0
 /// Requests that the platform unload any compiler resources.
 void unload_compiler()
 {
     #ifdef BOOST_COMPUTE_CL_VERSION_1_2
     clUnloadPlatformCompiler(m_platform);
     #else
     clUnloadCompiler();
     #endif
 }
Ejemplo n.º 2
0
JNIEXPORT jint JNICALL Java_org_lwjgl_opencl_CL12_nclUnloadPlatformCompiler(JNIEnv *env, jclass clazz, jlong platform, jlong function_pointer) {
	clUnloadPlatformCompilerPROC clUnloadPlatformCompiler = (clUnloadPlatformCompilerPROC)((intptr_t)function_pointer);
	cl_int __result = clUnloadPlatformCompiler((cl_platform_id)(intptr_t)platform);
	return __result;
}