Started a panama (no jni) based implementation.
authorNot Zed <notzed@gmail.com>
Fri, 24 Jan 2020 02:48:05 +0000 (13:18 +1030)
committerNot Zed <notzed@gmail.com>
Fri, 24 Jan 2020 02:48:05 +0000 (13:18 +1030)
commit9f48df918968321a6481c04985aa04f06389db4c
tree9d0e41fa622efd594461e6025cc37ca728da1e1a
parent08c0dea5a5426be2b4a5b7484337a0bb995dd1f3
Started a panama (no jni) based implementation.
63 files changed:
README
config.make.in
java.make
nbproject/build-impl.xml
nbproject/genfiles.properties
nbproject/project.properties
nbproject/project.xml
src/notzed.zcl/classes/api/Allocator.java [moved from src/notzed.zcl/jni/zcl-init-so.c with 54% similarity]
src/notzed.zcl/classes/api/Callback.java [new file with mode: 0644]
src/notzed.zcl/classes/api/Memory.java [new file with mode: 0644]
src/notzed.zcl/classes/api/Native.java [new file with mode: 0644]
src/notzed.zcl/classes/au/notzed/zcl/CLBuffer.java
src/notzed.zcl/classes/au/notzed/zcl/CLBufferInfo.java
src/notzed.zcl/classes/au/notzed/zcl/CLCommandQueue.java
src/notzed.zcl/classes/au/notzed/zcl/CLContext.java
src/notzed.zcl/classes/au/notzed/zcl/CLContextNotify.java
src/notzed.zcl/classes/au/notzed/zcl/CLDevice.java
src/notzed.zcl/classes/au/notzed/zcl/CLDeviceProperty.java
src/notzed.zcl/classes/au/notzed/zcl/CLEvent.java
src/notzed.zcl/classes/au/notzed/zcl/CLEventList.java
src/notzed.zcl/classes/au/notzed/zcl/CLEventNotify.java
src/notzed.zcl/classes/au/notzed/zcl/CLException.java
src/notzed.zcl/classes/au/notzed/zcl/CLExtendable.java
src/notzed.zcl/classes/au/notzed/zcl/CLExtension.java
src/notzed.zcl/classes/au/notzed/zcl/CLImage.java
src/notzed.zcl/classes/au/notzed/zcl/CLImageDesc.java
src/notzed.zcl/classes/au/notzed/zcl/CLImageFormat.java
src/notzed.zcl/classes/au/notzed/zcl/CLKernel.java
src/notzed.zcl/classes/au/notzed/zcl/CLMemory.java
src/notzed.zcl/classes/au/notzed/zcl/CLNotify.java
src/notzed.zcl/classes/au/notzed/zcl/CLObject.java
src/notzed.zcl/classes/au/notzed/zcl/CLPipe.java
src/notzed.zcl/classes/au/notzed/zcl/CLPlatform.java
src/notzed.zcl/classes/au/notzed/zcl/CLProgram.java
src/notzed.zcl/classes/au/notzed/zcl/CLProperty.java
src/notzed.zcl/classes/au/notzed/zcl/CLRuntimeException.java
src/notzed.zcl/classes/au/notzed/zcl/CLSampler.java
src/notzed.zcl/classes/au/notzed/zcl/khr/GLEvent.java
src/notzed.zcl/classes/au/notzed/zcl/khr/GLSharing.java
src/notzed.zcl/classes/module-info.java
src/notzed.zcl/gen/export-defines [new file with mode: 0755]
src/notzed.zcl/gen/gen.make [new file with mode: 0644]
src/notzed.zcl/gen/generate-api [new file with mode: 0755]
src/notzed.zcl/gen/opencl.pm [new file with mode: 0644]
src/notzed.zcl/gen/opencl.txt [new file with mode: 0644]
src/notzed.zcl/include/CL/cl.h [moved from src/notzed.zcl/jni/include/CL/cl.h with 100% similarity]
src/notzed.zcl/include/CL/cl_d3d10.h [moved from src/notzed.zcl/jni/include/CL/cl_d3d10.h with 100% similarity]
src/notzed.zcl/include/CL/cl_d3d11.h [moved from src/notzed.zcl/jni/include/CL/cl_d3d11.h with 100% similarity]
src/notzed.zcl/include/CL/cl_dx9_media_sharing.h [moved from src/notzed.zcl/jni/include/CL/cl_dx9_media_sharing.h with 100% similarity]
src/notzed.zcl/include/CL/cl_egl.h [moved from src/notzed.zcl/jni/include/CL/cl_egl.h with 100% similarity]
src/notzed.zcl/include/CL/cl_ext.h [moved from src/notzed.zcl/jni/include/CL/cl_ext.h with 100% similarity]
src/notzed.zcl/include/CL/cl_gl.h [moved from src/notzed.zcl/jni/include/CL/cl_gl.h with 100% similarity]
src/notzed.zcl/include/CL/cl_gl_ext.h [moved from src/notzed.zcl/jni/include/CL/cl_gl_ext.h with 100% similarity]
src/notzed.zcl/include/CL/cl_platform.h [moved from src/notzed.zcl/jni/include/CL/cl_platform.h with 100% similarity]
src/notzed.zcl/include/CL/opencl.h [moved from src/notzed.zcl/jni/include/CL/opencl.h with 100% similarity]
src/notzed.zcl/jni/jni.make [deleted file]
src/notzed.zcl/jni/zcl-extension.h [deleted file]
src/notzed.zcl/jni/zcl-generate [deleted file]
src/notzed.zcl/jni/zcl-init-dll.c [deleted file]
src/notzed.zcl/jni/zcl-jni.c [deleted file]
src/notzed.zcl/jni/zcl-jni.def [deleted file]
src/notzed.zcl/jni/zcl-khr-gl-event.c [deleted file]
src/notzed.zcl/jni/zcl-khr-gl-sharing.c [deleted file]