parent
e35bb7dcbc
commit
5e098b0493
@ -0,0 +1,235 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.*; |
||||
import java.nio.ByteBuffer; |
||||
import org.lwjgl.opencl.*; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglBuffer extends Buffer { |
||||
|
||||
private final long buffer; |
||||
|
||||
public LwjglBuffer(long buffer) { |
||||
super(new ReleaserImpl(buffer)); |
||||
this.buffer = buffer; |
||||
} |
||||
public long getBuffer() { |
||||
return buffer; |
||||
} |
||||
|
||||
@Override |
||||
public long getSize() { |
||||
return Info.clGetMemObjectInfoLong(buffer, CL10.CL_MEM_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public MemoryAccess getMemoryAccessFlags() { |
||||
return Utils.getMemoryAccessFromFlag(Info.clGetMemObjectInfoLong(buffer, CL10.CL_MEM_FLAGS)); |
||||
} |
||||
|
||||
@Override |
||||
public void read(CommandQueue queue, ByteBuffer dest, long size, long offset) { |
||||
//Note: LWJGL does not support the size parameter, I have to set the buffer limit
|
||||
dest.limit((int) (dest.position() + size)); |
||||
int ret = CL10.clEnqueueReadBuffer(((LwjglCommandQueue)queue).getQueue(), |
||||
buffer, CL10.CL_TRUE, offset, dest, null, null); |
||||
Utils.checkError(ret, "clEnqueueReadBuffer"); |
||||
} |
||||
|
||||
@Override |
||||
public Event readAsync(CommandQueue queue, ByteBuffer dest, long size, long offset) { |
||||
//Note: LWJGL does not support the size parameter, I have to set the buffer limit
|
||||
dest.limit((int) (dest.position() + size)); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue)queue).getQueue(); |
||||
int ret = CL10.clEnqueueReadBuffer(q, buffer, CL10.CL_FALSE, offset, dest, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueReadBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public void write(CommandQueue queue, ByteBuffer src, long size, long offset) { |
||||
//Note: LWJGL does not support the size parameter, I have to set the buffer limit
|
||||
src.limit((int) (src.position() + size)); |
||||
long q = ((LwjglCommandQueue)queue).getQueue(); |
||||
int ret = CL10.clEnqueueWriteBuffer(q, buffer, CL10.CL_TRUE, offset, src, null, null); |
||||
Utils.checkError(ret, "clEnqueueWriteBuffer"); |
||||
} |
||||
|
||||
@Override |
||||
public Event writeAsync(CommandQueue queue, ByteBuffer src, long size, long offset) { |
||||
//Note: LWJGL does not support the size parameter, I have to set the buffer limit
|
||||
src.limit((int) (src.position() + size)); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue)queue).getQueue(); |
||||
int ret = CL10.clEnqueueWriteBuffer(q, buffer, CL10.CL_FALSE, offset, src, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueWriteBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public void copyTo(CommandQueue queue, Buffer dest, long size, long srcOffset, long destOffset) { |
||||
long q = ((LwjglCommandQueue)queue).getQueue(); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
int ret = CL10.clEnqueueCopyBuffer(q, buffer, ((LwjglBuffer) dest).buffer, srcOffset, destOffset, size, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
ret = CL10.clWaitForEvents(event); |
||||
Utils.checkError(ret, "clWaitForEvents"); |
||||
} |
||||
|
||||
@Override |
||||
public Event copyToAsync(CommandQueue queue, Buffer dest, long size, long srcOffset, long destOffset) { |
||||
long q = ((LwjglCommandQueue)queue).getQueue(); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
int ret = CL10.clEnqueueCopyBuffer(q, buffer, ((LwjglBuffer) dest).buffer, srcOffset, destOffset, size, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public ByteBuffer map(CommandQueue queue, long size, long offset, MappingAccess access) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
long flags = Utils.getMappingAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
ByteBuffer b = CL10.clEnqueueMapBuffer(q, buffer, CL10.CL_TRUE, flags, offset, size, null, null, Utils.errorBuffer, null); |
||||
Utils.checkError(Utils.errorBuffer, "clEnqueueMapBuffer"); |
||||
return b; |
||||
} |
||||
|
||||
@Override |
||||
public void unmap(CommandQueue queue, ByteBuffer ptr) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
int ret = CL10.clEnqueueUnmapMemObject(q, buffer, ptr, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueUnmapMemObject"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
ret = CL10.clWaitForEvents(event); |
||||
Utils.checkError(ret, "clWaitForEvents"); |
||||
} |
||||
|
||||
@Override |
||||
public com.jme3.opencl.Buffer.AsyncMapping mapAsync(CommandQueue queue, long size, long offset, MappingAccess access) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.errorBuffer.rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
long flags = Utils.getMappingAccessFlags(access); |
||||
ByteBuffer buf = CL10.clEnqueueMapBuffer(q, buffer, CL10.CL_FALSE, flags, offset, size, null, Utils.pointerBuffers[0], Utils.errorBuffer, null); |
||||
Utils.checkError(Utils.errorBuffer, "clEnqueueMapBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new com.jme3.opencl.Buffer.AsyncMapping(new LwjglEvent(event), buf); |
||||
} |
||||
|
||||
@Override |
||||
public Event fillAsync(CommandQueue queue, ByteBuffer pattern, long size, long offset) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL12.clEnqueueFillBuffer(q, buffer, pattern, offset, size, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueFillBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public Event copyToImageAsync(CommandQueue queue, Image dest, long srcOffset, long[] destOrigin, long[] destRegion) { |
||||
if (destOrigin.length!=3 || destRegion.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(destOrigin).position(0); |
||||
Utils.pointerBuffers[2].put(destRegion).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueCopyBufferToImage(q, buffer, ((LwjglImage) dest).getImage(), |
||||
srcOffset, Utils.pointerBuffers[1], Utils.pointerBuffers[2], null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyBufferToImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public Event acquireBufferForSharingAsync(CommandQueue queue) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueAcquireGLObjects(q, buffer, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueAcquireGLObjects"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
@Override |
||||
public void acquireBufferForSharingNoEvent(CommandQueue queue) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueAcquireGLObjects(q, buffer, null, null); |
||||
Utils.checkError(ret, "clEnqueueAcquireGLObjects"); |
||||
} |
||||
|
||||
@Override |
||||
public Event releaseBufferForSharingAsync(CommandQueue queue) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueReleaseGLObjects(q, buffer, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueReleaseGLObjects"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
@Override |
||||
public void releaseBufferForSharingNoEvent(CommandQueue queue) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueReleaseGLObjects(q, buffer, null, null); |
||||
Utils.checkError(ret, "clEnqueueReleaseGLObjects"); |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long mem; |
||||
private ReleaserImpl(long mem) { |
||||
this.mem = mem; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (mem != 0) { |
||||
int ret = CL10.clReleaseMemObject(mem); |
||||
mem = 0; |
||||
Utils.reportError(ret, "clReleaseMemObject"); |
||||
} |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,80 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.CommandQueue; |
||||
import org.lwjgl.opencl.CL10; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglCommandQueue extends CommandQueue { |
||||
|
||||
private final long queue; |
||||
|
||||
public LwjglCommandQueue(long queue) { |
||||
super(new ReleaserImpl(queue)); |
||||
this.queue = queue; |
||||
} |
||||
|
||||
public long getQueue() { |
||||
return queue; |
||||
} |
||||
|
||||
@Override |
||||
public void flush() { |
||||
int ret = CL10.clFlush(queue); |
||||
Utils.checkError(ret, "clFlush"); |
||||
} |
||||
|
||||
@Override |
||||
public void finish() { |
||||
int ret = CL10.clFinish(queue); |
||||
Utils.checkError(ret, "clFinish"); |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long queue; |
||||
private ReleaserImpl(long queue) { |
||||
this.queue = queue; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (queue != 0) { |
||||
int ret = CL10.clReleaseCommandQueue(queue); |
||||
queue = 0; |
||||
Utils.reportError(ret, "clReleaseCommandQueue"); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,252 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.*; |
||||
import com.jme3.opencl.Context; |
||||
import com.jme3.opencl.Image.ImageDescriptor; |
||||
import com.jme3.opencl.Image.ImageFormat; |
||||
import com.jme3.scene.VertexBuffer; |
||||
import com.jme3.texture.FrameBuffer; |
||||
import com.jme3.texture.Texture; |
||||
import java.nio.ByteBuffer; |
||||
import java.nio.IntBuffer; |
||||
import java.util.List; |
||||
import java.util.logging.Level; |
||||
import java.util.logging.Logger; |
||||
import org.lwjgl.BufferUtils; |
||||
import org.lwjgl.opencl.*; |
||||
import org.lwjgl.opengl.*; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglContext extends Context { |
||||
private static final Logger LOG = Logger.getLogger(LwjglContext.class.getName()); |
||||
private final long context; |
||||
private final List<LwjglDevice> devices; |
||||
|
||||
public LwjglContext(long context, List<LwjglDevice> devices) { |
||||
super(new ReleaserImpl(context, devices)); |
||||
this.context = context; |
||||
this.devices = devices; |
||||
} |
||||
|
||||
public long getContext() { |
||||
return context; |
||||
} |
||||
|
||||
@Override |
||||
public List<LwjglDevice> getDevices() { |
||||
return devices; |
||||
} |
||||
|
||||
@Override |
||||
@SuppressWarnings("element-type-mismatch") |
||||
public CommandQueue createQueue(Device device) { |
||||
assert (devices.contains(device)); //this also ensures that device is a LwjglDevice
|
||||
long d = ((LwjglDevice) device).getDevice(); |
||||
long properties = 0; |
||||
long q = CL10.clCreateCommandQueue(context, d, properties, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateCommandQueue"); |
||||
return new LwjglCommandQueue(q); |
||||
} |
||||
|
||||
@Override |
||||
public Buffer createBuffer(long size, MemoryAccess access) { |
||||
long flags = Utils.getMemoryAccessFlags(access); |
||||
long mem = CL10.clCreateBuffer(context, flags, size, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateBuffer"); |
||||
return new LwjglBuffer(mem); |
||||
} |
||||
|
||||
@Override |
||||
public Buffer createBufferFromHost(ByteBuffer data, MemoryAccess access) { |
||||
long flags = Utils.getMemoryAccessFlags(access); |
||||
flags |= CL10.CL_MEM_USE_HOST_PTR; |
||||
long mem = CL10.clCreateBuffer(context, flags, data, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateBuffer"); |
||||
return new LwjglBuffer(mem); |
||||
} |
||||
|
||||
@Override |
||||
public Image createImage(MemoryAccess access, ImageFormat format, ImageDescriptor descr) { |
||||
long memFlags = Utils.getMemoryAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
|
||||
CLImageFormat f = null; |
||||
CLImageDesc d = null; |
||||
try { |
||||
f = CLImageFormat.malloc(); |
||||
d = CLImageDesc.calloc(); |
||||
f.image_channel_data_type(LwjglImage.decodeImageChannelType(format.channelType)); |
||||
f.image_channel_order(LwjglImage.decodeImageChannelOrder(format.channelOrder)); |
||||
d.image_type(LwjglImage.decodeImageType(descr.type)); |
||||
d.image_width(descr.width); |
||||
d.image_height(descr.height); |
||||
d.image_depth(descr.depth); |
||||
d.image_array_size(descr.arraySize); |
||||
d.image_row_pitch(descr.rowPitch); |
||||
d.image_slice_pitch(descr.slicePitch); |
||||
//create image
|
||||
long mem = CL12.clCreateImage(context, memFlags, f, d, descr.hostPtr, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateImage"); |
||||
return new LwjglImage(mem); |
||||
} finally { |
||||
if (f != null) { |
||||
f.free(); |
||||
} |
||||
if (d != null) { |
||||
d.free(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public ImageFormat[] querySupportedFormats(MemoryAccess access, Image.ImageType type) { |
||||
long memFlags = Utils.getMemoryAccessFlags(access); |
||||
int typeFlag = LwjglImage.decodeImageType(type); |
||||
Utils.tempBuffers[0].b16i.rewind(); |
||||
//query count
|
||||
int ret = CL10.clGetSupportedImageFormats(context, memFlags, typeFlag, null, Utils.tempBuffers[0].b16i); |
||||
Utils.checkError(ret, "clGetSupportedImageFormats"); |
||||
int count = Utils.tempBuffers[0].b16i.get(0); |
||||
if (count == 0) { |
||||
return new ImageFormat[0]; |
||||
} |
||||
//get formats
|
||||
CLImageFormat.Buffer formatsB = new CLImageFormat.Buffer(BufferUtils.createByteBuffer(count * CLImageFormat.SIZEOF)); |
||||
ret = CL10.clGetSupportedImageFormats(context, memFlags, typeFlag, formatsB, null); |
||||
Utils.checkError(ret, "clGetSupportedImageFormats"); |
||||
//convert formats
|
||||
ImageFormat[] formats = new ImageFormat[count]; |
||||
for (int i=0; i<count; ++i) { |
||||
CLImageFormat f = formatsB.get(); |
||||
Image.ImageChannelOrder channelOrder = LwjglImage.encodeImageChannelOrder(f.image_channel_order()); |
||||
Image.ImageChannelType channelType = LwjglImage.encodeImageChannelType(f.image_channel_data_type()); |
||||
formats[i] = new ImageFormat(channelOrder, channelType); |
||||
} |
||||
return formats; |
||||
} |
||||
|
||||
@Override |
||||
public Buffer bindVertexBuffer(VertexBuffer vb, MemoryAccess access) { |
||||
int id = vb.getId(); |
||||
if (id == -1) { |
||||
throw new IllegalArgumentException("vertex buffer was not yet uploaded to the GPU or is CPU only"); |
||||
} |
||||
long flags = Utils.getMemoryAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
long mem = CL10GL.clCreateFromGLBuffer(context, flags, id, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateFromGLBuffer"); |
||||
return new LwjglBuffer(mem); |
||||
} |
||||
|
||||
@Override |
||||
public Image bindImage(com.jme3.texture.Image image, Texture.Type textureType, int miplevel, MemoryAccess access) { |
||||
int imageID = image.getId(); |
||||
if (imageID == -1) { |
||||
throw new IllegalArgumentException("image was not yet uploaded to the GPU"); |
||||
} |
||||
long memFlags = Utils.getMemoryAccessFlags(access); |
||||
int textureTarget = convertTextureType(textureType); |
||||
Utils.errorBuffer.rewind(); |
||||
long mem = CL12GL.clCreateFromGLTexture(context, memFlags, textureTarget, miplevel, imageID, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateFromGLTexture"); |
||||
return new LwjglImage(mem); |
||||
} |
||||
|
||||
@Override |
||||
protected Image bindPureRenderBuffer(FrameBuffer.RenderBuffer buffer, MemoryAccess access) { |
||||
int renderbuffer = buffer.getId(); |
||||
if (renderbuffer == -1) { |
||||
throw new IllegalArgumentException("renderbuffer was not yet uploaded to the GPU"); |
||||
} |
||||
long memFlags = Utils.getMemoryAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
long mem = CL10GL.clCreateFromGLRenderbuffer(context, memFlags, renderbuffer, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateFromGLRenderbuffer"); |
||||
return new LwjglImage(mem); |
||||
} |
||||
|
||||
private int convertTextureType(Texture.Type textureType) { |
||||
switch (textureType) { |
||||
case TwoDimensional: return GL11.GL_TEXTURE_2D; |
||||
case TwoDimensionalArray: return GL30.GL_TEXTURE_2D_ARRAY; |
||||
case ThreeDimensional: return GL12.GL_TEXTURE_3D; |
||||
case CubeMap: return GL13.GL_TEXTURE_CUBE_MAP; |
||||
default: throw new IllegalArgumentException("unknown texture type "+textureType); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public Program createProgramFromSourceCode(String sourceCode) { |
||||
LOG.log(Level.FINE, "Create program from source:\n{0}", sourceCode); |
||||
Utils.errorBuffer.rewind(); |
||||
long p = CL10.clCreateProgramWithSource(context, sourceCode, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateProgramWithSource"); |
||||
return new LwjglProgram(p, this); |
||||
} |
||||
|
||||
@Override |
||||
public Program createProgramFromBinary(ByteBuffer binaries, Device device) { |
||||
Utils.errorBuffer.rewind(); |
||||
Utils.tempBuffers[0].b16i.rewind(); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[0].put(0, ((LwjglDevice) device).getDevice()); |
||||
long p = CL10.clCreateProgramWithBinary(context, Utils.pointerBuffers[0], |
||||
binaries, Utils.tempBuffers[0].b16i, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateProgramWithSource"); |
||||
Utils.checkError(Utils.tempBuffers[0].b16i, "clCreateProgramWithSource"); |
||||
return new LwjglProgram(p, this); |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long context; |
||||
private final List<LwjglDevice> devices; |
||||
private ReleaserImpl(long mem, List<LwjglDevice> devices) { |
||||
this.context = mem; |
||||
this.devices = devices; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (context != 0) { |
||||
int ret = CL10.clReleaseContext(context); |
||||
context = 0; |
||||
devices.clear(); |
||||
Utils.reportError(ret, "clReleaseMemObject"); |
||||
} |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,303 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.Device; |
||||
import com.jme3.opencl.Platform; |
||||
import java.util.Arrays; |
||||
import java.util.Collection; |
||||
import org.lwjgl.PointerBuffer; |
||||
import org.lwjgl.opencl.CL10; |
||||
import org.lwjgl.opencl.CL11; |
||||
import org.lwjgl.opencl.CLDevice; |
||||
import org.lwjgl.opencl.Info; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public final class LwjglDevice implements Device { |
||||
|
||||
final CLDevice device; |
||||
final LwjglPlatform platform; |
||||
|
||||
public LwjglDevice(CLDevice device, LwjglPlatform platform) { |
||||
this.device = device; |
||||
this.platform = platform; |
||||
} |
||||
|
||||
public long getDevice() { |
||||
return device.address(); |
||||
} |
||||
public CLDevice getCLDevice() { |
||||
return device; |
||||
} |
||||
|
||||
@Override |
||||
public LwjglPlatform getPlatform() { |
||||
return platform; |
||||
} |
||||
|
||||
@Override |
||||
public DeviceType getDeviceType() { |
||||
int type = Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_TYPE); |
||||
switch (type) { |
||||
case CL10.CL_DEVICE_TYPE_ACCELERATOR: return DeviceType.ACCELEARTOR; |
||||
case CL10.CL_DEVICE_TYPE_CPU: return DeviceType.CPU; |
||||
case CL10.CL_DEVICE_TYPE_GPU: return DeviceType.GPU; |
||||
default: return DeviceType.DEFAULT; |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public int getVendorId() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_VENDOR_ID); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isAvailable() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL10.CL_DEVICE_AVAILABLE); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasCompiler() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL10.CL_DEVICE_COMPILER_AVAILABLE); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasDouble() { |
||||
return hasExtension("cl_khr_fp64"); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasHalfFloat() { |
||||
return hasExtension("cl_khr_fp16"); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasErrorCorrectingMemory() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL10.CL_DEVICE_ERROR_CORRECTION_SUPPORT); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasUnifiedMemory() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL11.CL_DEVICE_HOST_UNIFIED_MEMORY); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasImageSupport() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL10.CL_DEVICE_IMAGE_SUPPORT); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasWritableImage3D() { |
||||
return hasExtension("cl_khr_3d_image_writes"); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasOpenGLInterop() { |
||||
return hasExtension("cl_khr_gl_sharing"); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasExtension(String extension) { |
||||
return getExtensions().contains(extension); |
||||
} |
||||
|
||||
@Override |
||||
public Collection<? extends String> getExtensions() { |
||||
return Arrays.asList(Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DEVICE_EXTENSIONS).split(" ")); |
||||
} |
||||
|
||||
@Override |
||||
public int getComputeUnits() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_COMPUTE_UNITS); |
||||
} |
||||
|
||||
@Override |
||||
public int getClockFrequency() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_CLOCK_FREQUENCY); |
||||
} |
||||
|
||||
@Override |
||||
public int getAddressBits() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_ADDRESS_BITS); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isLittleEndian() { |
||||
return Info.clGetDeviceInfoBoolean(device.address(), CL10.CL_DEVICE_ENDIAN_LITTLE); |
||||
} |
||||
|
||||
@Override |
||||
public long getMaximumWorkItemDimensions() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS); |
||||
} |
||||
|
||||
@Override |
||||
public long[] getMaximumWorkItemSizes() { |
||||
int dim = (int) getMaximumWorkItemDimensions(); |
||||
PointerBuffer sizes = PointerBuffer.allocateDirect(dim); |
||||
Info.clGetDeviceInfoPointers(device.address(), CL10.CL_DEVICE_MAX_WORK_ITEM_SIZES, sizes); |
||||
long[] sx = new long[dim]; |
||||
sizes.get(sx); |
||||
return sx; |
||||
} |
||||
|
||||
@Override |
||||
public long getMaxiumWorkItemsPerGroup() { |
||||
return Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_MAX_WORK_GROUP_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public int getMaximumSamplers() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_SAMPLERS); |
||||
} |
||||
|
||||
@Override |
||||
public int getMaximumReadImages() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_READ_IMAGE_ARGS); |
||||
} |
||||
|
||||
@Override |
||||
public int getMaximumWriteImages() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_WRITE_IMAGE_ARGS); |
||||
} |
||||
|
||||
@Override |
||||
public long[] getMaximumImage2DSize() { |
||||
return new long[] { |
||||
Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_IMAGE2D_MAX_WIDTH), |
||||
Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_IMAGE2D_MAX_HEIGHT) |
||||
}; |
||||
} |
||||
|
||||
@Override |
||||
public long[] getMaximumImage3DSize() { |
||||
return new long[] { |
||||
Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_IMAGE3D_MAX_WIDTH), |
||||
Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_IMAGE3D_MAX_HEIGHT), |
||||
Info.clGetDeviceInfoPointer(device.address(), CL10.CL_DEVICE_IMAGE3D_MAX_DEPTH) |
||||
}; |
||||
} |
||||
|
||||
@Override |
||||
public long getMaximumAllocationSize() { |
||||
return Info.clGetDeviceInfoLong(device.address(), CL10.CL_DEVICE_MAX_MEM_ALLOC_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public long getGlobalMemorySize() { |
||||
return Info.clGetDeviceInfoLong(device.address(), CL10.CL_DEVICE_GLOBAL_MEM_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public long getLocalMemorySize() { |
||||
return Info.clGetDeviceInfoLong(device.address(), CL10.CL_DEVICE_LOCAL_MEM_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public long getMaximumConstantBufferSize() { |
||||
return Info.clGetDeviceInfoLong(device.address(), CL10.CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public int getMaximumConstantArguments() { |
||||
return Info.clGetDeviceInfoInt(device.address(), CL10.CL_DEVICE_MAX_CONSTANT_ARGS); |
||||
} |
||||
|
||||
@Override |
||||
public String getProfile() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DEVICE_PROFILE); |
||||
} |
||||
|
||||
@Override |
||||
public String getVersion() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DEVICE_VERSION); |
||||
} |
||||
|
||||
@Override |
||||
public int getVersionMajor() { |
||||
return Utils.getMajorVersion(getVersion(), "OpenCL "); |
||||
} |
||||
|
||||
@Override |
||||
public int getVersionMinor() { |
||||
return Utils.getMinorVersion(getVersion(), "OpenCL "); |
||||
} |
||||
|
||||
@Override |
||||
public String getCompilerVersion() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL11.CL_DEVICE_OPENCL_C_VERSION); |
||||
} |
||||
|
||||
@Override |
||||
public int getCompilerVersionMajor() { |
||||
return Utils.getMajorVersion(getCompilerVersion(), "OpenCL C "); |
||||
} |
||||
|
||||
@Override |
||||
public int getCompilerVersionMinor() { |
||||
return Utils.getMinorVersion(getCompilerVersion(), "OpenCL C "); |
||||
} |
||||
|
||||
@Override |
||||
public String getDriverVersion() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DRIVER_VERSION); |
||||
} |
||||
|
||||
@Override |
||||
public int getDriverVersionMajor() { |
||||
return Utils.getMajorVersion(getDriverVersion(), ""); |
||||
} |
||||
|
||||
@Override |
||||
public int getDriverVersionMinor() { |
||||
return Utils.getMinorVersion(getDriverVersion(), ""); |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DEVICE_NAME); |
||||
} |
||||
|
||||
@Override |
||||
public String getVendor() { |
||||
return Info.clGetDeviceInfoStringASCII(device.address(), CL10.CL_DEVICE_VENDOR); |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return getName(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,94 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.Event; |
||||
import java.util.logging.Logger; |
||||
import org.lwjgl.opencl.CL10; |
||||
import org.lwjgl.opencl.Info; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglEvent extends Event { |
||||
private static final Logger LOG = Logger.getLogger(LwjglEvent.class.getName()); |
||||
private long event; |
||||
|
||||
public LwjglEvent(long event) { |
||||
super(new ReleaserImpl(event)); |
||||
this.event = event; |
||||
} |
||||
|
||||
public long getEvent() { |
||||
return event; |
||||
} |
||||
|
||||
@Override |
||||
public void waitForFinished() { |
||||
CL10.clWaitForEvents(event); |
||||
release(); //short cut to save resources
|
||||
} |
||||
|
||||
@Override |
||||
public boolean isCompleted() { |
||||
int status = Info.clGetEventInfoInt(event, CL10.CL_EVENT_COMMAND_EXECUTION_STATUS); |
||||
if (status == CL10.CL_SUCCESS) { |
||||
release(); //short cut to save resources
|
||||
return true; |
||||
} else if (status < 0) { |
||||
Utils.checkError(status, "EventStatus"); |
||||
return false; |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long event; |
||||
|
||||
private ReleaserImpl(long event) { |
||||
this.event = event; |
||||
} |
||||
|
||||
@Override |
||||
public void release() { |
||||
if (event != 0) { |
||||
int ret = CL10.clReleaseEvent(event); |
||||
event = 0; |
||||
Utils.reportError(ret, "clReleaseEvent"); |
||||
LOG.finer("Event deleted"); |
||||
} |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,576 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.math.ColorRGBA; |
||||
import com.jme3.opencl.*; |
||||
import java.nio.ByteBuffer; |
||||
import java.util.logging.Level; |
||||
import java.util.logging.Logger; |
||||
import org.lwjgl.opencl.*; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglImage extends Image { |
||||
private static final Logger LOG = Logger.getLogger(LwjglImage.class.getName()); |
||||
|
||||
private final long image; |
||||
|
||||
public LwjglImage(long image) { |
||||
super(new ReleaserImpl(image)); |
||||
this.image = image; |
||||
} |
||||
|
||||
public long getImage() { |
||||
return image; |
||||
} |
||||
|
||||
public static int decodeImageChannelOrder(ImageChannelOrder order) { |
||||
switch (order) { |
||||
case A: |
||||
return CL10.CL_A; |
||||
case ARGB: |
||||
return CL10.CL_ARGB; |
||||
case BGRA: |
||||
return CL10.CL_BGRA; |
||||
case INTENSITY: |
||||
return CL10.CL_INTENSITY; |
||||
case LUMINANCE: |
||||
return CL10.CL_LUMINANCE; |
||||
case R: |
||||
return CL10.CL_R; |
||||
case RA: |
||||
return CL10.CL_RA; |
||||
case RG: |
||||
return CL10.CL_RG; |
||||
case RGB: |
||||
return CL10.CL_RGB; |
||||
case RGBA: |
||||
return CL10.CL_RGBA; |
||||
case RGBx: |
||||
return CL11.CL_RGBx; |
||||
case RGx: |
||||
return CL11.CL_RGx; |
||||
case Rx: |
||||
return CL11.CL_Rx; |
||||
default: |
||||
throw new IllegalArgumentException("unknown image channel order: " + order); |
||||
} |
||||
} |
||||
|
||||
public static ImageChannelOrder encodeImageChannelOrder(int order) { |
||||
switch (order) { |
||||
case CL10.CL_A: |
||||
return ImageChannelOrder.A; |
||||
case CL10.CL_ARGB: |
||||
return ImageChannelOrder.ARGB; |
||||
case CL10.CL_BGRA: |
||||
return ImageChannelOrder.BGRA; |
||||
case CL10.CL_INTENSITY: |
||||
return ImageChannelOrder.INTENSITY; |
||||
case CL10.CL_LUMINANCE: |
||||
return ImageChannelOrder.LUMINANCE; |
||||
case CL10.CL_R: |
||||
return ImageChannelOrder.R; |
||||
case CL10.CL_RA: |
||||
return ImageChannelOrder.RA; |
||||
case CL10.CL_RG: |
||||
return ImageChannelOrder.RG; |
||||
case CL10.CL_RGB: |
||||
return ImageChannelOrder.RGB; |
||||
case CL10.CL_RGBA: |
||||
return ImageChannelOrder.RGBA; |
||||
case CL11.CL_RGBx: |
||||
return ImageChannelOrder.RGBx; |
||||
case CL11.CL_RGx: |
||||
return ImageChannelOrder.RGx; |
||||
case CL11.CL_Rx: |
||||
return ImageChannelOrder.Rx; |
||||
default: |
||||
//throw new com.jme3.opencl.OpenCLException("unknown image channel order id: " + order);
|
||||
LOG.log(Level.WARNING, "Unknown image channel order id: {0}", order); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public static int decodeImageChannelType(ImageChannelType type) { |
||||
switch (type) { |
||||
case FLOAT: |
||||
return CL10.CL_FLOAT; |
||||
case HALF_FLOAT: |
||||
return CL10.CL_HALF_FLOAT; |
||||
case SIGNED_INT16: |
||||
return CL10.CL_SIGNED_INT16; |
||||
case SIGNED_INT32: |
||||
return CL10.CL_SIGNED_INT32; |
||||
case SIGNED_INT8: |
||||
return CL10.CL_SIGNED_INT8; |
||||
case SNORM_INT16: |
||||
return CL10.CL_SNORM_INT16; |
||||
case SNORM_INT8: |
||||
return CL10.CL_SNORM_INT8; |
||||
case UNORM_INT8: |
||||
return CL10.CL_UNORM_INT8; |
||||
case UNORM_INT_101010: |
||||
return CL10.CL_UNORM_INT_101010; |
||||
case UNORM_INT16: |
||||
return CL10.CL_UNORM_INT16; |
||||
case UNORM_SHORT_565: |
||||
return CL10.CL_UNORM_SHORT_565; |
||||
case UNORM_SHORT_555: |
||||
return CL10.CL_UNORM_SHORT_555; |
||||
case UNSIGNED_INT16: |
||||
return CL10.CL_UNSIGNED_INT16; |
||||
case UNSIGNED_INT32: |
||||
return CL10.CL_UNSIGNED_INT32; |
||||
case UNSIGNED_INT8: |
||||
return CL10.CL_UNSIGNED_INT8; |
||||
default: |
||||
throw new IllegalArgumentException("Unknown image channel type: " + type); |
||||
} |
||||
} |
||||
|
||||
public static ImageChannelType encodeImageChannelType(int type) { |
||||
switch (type) { |
||||
case CL10.CL_FLOAT: |
||||
return ImageChannelType.FLOAT; |
||||
case CL10.CL_HALF_FLOAT: |
||||
return ImageChannelType.HALF_FLOAT; |
||||
case CL10.CL_SIGNED_INT16: |
||||
return ImageChannelType.SIGNED_INT16; |
||||
case CL10.CL_SIGNED_INT32: |
||||
return ImageChannelType.SIGNED_INT32; |
||||
case CL10.CL_SIGNED_INT8: |
||||
return ImageChannelType.SIGNED_INT8; |
||||
case CL10.CL_SNORM_INT16: |
||||
return ImageChannelType.SNORM_INT16; |
||||
case CL10.CL_SNORM_INT8: |
||||
return ImageChannelType.SNORM_INT8; |
||||
case CL10.CL_UNORM_INT8: |
||||
return ImageChannelType.UNORM_INT8; |
||||
case CL10.CL_UNORM_INT16: |
||||
return ImageChannelType.UNORM_INT16; |
||||
case CL10.CL_UNORM_INT_101010: |
||||
return ImageChannelType.UNORM_INT_101010; |
||||
case CL10.CL_UNORM_SHORT_555: |
||||
return ImageChannelType.UNORM_SHORT_555; |
||||
case CL10.CL_UNORM_SHORT_565: |
||||
return ImageChannelType.UNORM_SHORT_565; |
||||
case CL10.CL_UNSIGNED_INT16: |
||||
return ImageChannelType.UNSIGNED_INT16; |
||||
case CL10.CL_UNSIGNED_INT32: |
||||
return ImageChannelType.UNSIGNED_INT32; |
||||
case CL10.CL_UNSIGNED_INT8: |
||||
return ImageChannelType.UNSIGNED_INT8; |
||||
default: |
||||
//throw new com.jme3.opencl.OpenCLException("unknown image channel type id: " + type);
|
||||
LOG.log(Level.WARNING, "Unknown image channel type id: {0}", type); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public static int decodeImageType(ImageType type) { |
||||
switch (type) { |
||||
case IMAGE_1D: |
||||
return CL12.CL_MEM_OBJECT_IMAGE1D; |
||||
case IMAGE_1D_ARRAY: |
||||
return CL12.CL_MEM_OBJECT_IMAGE1D_ARRAY; |
||||
case IMAGE_1D_BUFFER: |
||||
return CL12.CL_MEM_OBJECT_IMAGE1D_BUFFER; |
||||
case IMAGE_2D: |
||||
return CL10.CL_MEM_OBJECT_IMAGE2D; |
||||
case IMAGE_2D_ARRAY: |
||||
return CL12.CL_MEM_OBJECT_IMAGE2D_ARRAY; |
||||
case IMAGE_3D: |
||||
return CL10.CL_MEM_OBJECT_IMAGE3D; |
||||
default: |
||||
throw new IllegalArgumentException("Unknown image type: " + type); |
||||
} |
||||
} |
||||
|
||||
public static ImageType encodeImageType(int type) { |
||||
switch (type) { |
||||
case CL12.CL_MEM_OBJECT_IMAGE1D: |
||||
return ImageType.IMAGE_1D; |
||||
case CL12.CL_MEM_OBJECT_IMAGE1D_ARRAY: |
||||
return ImageType.IMAGE_1D_ARRAY; |
||||
case CL12.CL_MEM_OBJECT_IMAGE1D_BUFFER: |
||||
return ImageType.IMAGE_1D_BUFFER; |
||||
case CL10.CL_MEM_OBJECT_IMAGE2D: |
||||
return ImageType.IMAGE_2D; |
||||
case CL12.CL_MEM_OBJECT_IMAGE2D_ARRAY: |
||||
return ImageType.IMAGE_2D_ARRAY; |
||||
case CL10.CL_MEM_OBJECT_IMAGE3D: |
||||
return ImageType.IMAGE_3D; |
||||
default: |
||||
throw new com.jme3.opencl.OpenCLException("Unknown image type id: " + type); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public long getWidth() { |
||||
return Info.clGetImageInfoPointer(image, CL10.CL_IMAGE_WIDTH); |
||||
} |
||||
|
||||
@Override |
||||
public long getHeight() { |
||||
return Info.clGetImageInfoPointer(image, CL10.CL_IMAGE_HEIGHT); |
||||
} |
||||
|
||||
@Override |
||||
public long getDepth() { |
||||
return Info.clGetImageInfoPointer(image, CL10.CL_IMAGE_DEPTH); |
||||
} |
||||
|
||||
@Override |
||||
public long getRowPitch() { |
||||
return Info.clGetImageInfoPointer(image, CL10.CL_IMAGE_ROW_PITCH); |
||||
} |
||||
|
||||
@Override |
||||
public long getSlicePitch() { |
||||
return Info.clGetImageInfoPointer(image, CL10.CL_IMAGE_SLICE_PITCH); |
||||
} |
||||
|
||||
@Override |
||||
public long getArraySize() { |
||||
return Info.clGetImageInfoPointer(image, CL12.CL_IMAGE_ARRAY_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public ImageFormat getImageFormat() { |
||||
Utils.b80.rewind(); |
||||
CLImageFormat format = new CLImageFormat(Utils.b80); |
||||
int ret = CL10.clGetImageInfo(image, CL10.CL_IMAGE_FORMAT, format.sizeof(), Utils.b80, null); |
||||
Utils.checkError(ret, "clGetImageInfo"); |
||||
return new ImageFormat(encodeImageChannelOrder(format.image_channel_order()), encodeImageChannelType(format.image_channel_data_type())); |
||||
} |
||||
|
||||
@Override |
||||
public ImageType getImageType() { |
||||
int type = Info.clGetMemObjectInfoInt(image, CL10.CL_MEM_TYPE); |
||||
return encodeImageType(type); |
||||
} |
||||
|
||||
@Override |
||||
public int getElementSize() { |
||||
return Info.clGetImageInfoInt(image, CL10.CL_IMAGE_ELEMENT_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public void readImage(CommandQueue queue, ByteBuffer dest, long[] origin, long[] region, long rowPitch, long slicePitch) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueReadImage(q, image, CL10.CL_TRUE, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
rowPitch, slicePitch, dest, null, null); |
||||
Utils.checkError(ret, "clEnqueueReadImage"); |
||||
} |
||||
|
||||
@Override |
||||
public Event readImageAsync(CommandQueue queue, ByteBuffer dest, long[] origin, long[] region, long rowPitch, long slicePitch) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueReadImage(q, image, CL10.CL_FALSE, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
rowPitch, slicePitch, dest, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueReadImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public void writeImage(CommandQueue queue, ByteBuffer dest, long[] origin, long[] region, long rowPitch, long slicePitch) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueWriteImage(q, image, CL10.CL_TRUE, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
rowPitch, slicePitch, dest, null, null); |
||||
Utils.checkError(ret, "clEnqueueWriteImage"); |
||||
} |
||||
|
||||
@Override |
||||
public Event writeImageAsync(CommandQueue queue, ByteBuffer dest, long[] origin, long[] region, long rowPitch, long slicePitch) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueWriteImage(q, image, CL10.CL_FALSE, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
rowPitch, slicePitch, dest, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueWriteImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public void copyTo(CommandQueue queue, Image dest, long[] srcOrigin, long[] destOrigin, long[] region) { |
||||
if (srcOrigin.length!=3 || destOrigin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[3].rewind(); |
||||
Utils.pointerBuffers[1].put(srcOrigin).position(0); |
||||
Utils.pointerBuffers[2].put(destOrigin).position(0); |
||||
Utils.pointerBuffers[3].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueCopyImage(q, image, ((LwjglImage) dest).getImage(), |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], Utils.pointerBuffers[3], |
||||
null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
ret = CL10.clWaitForEvents(event); |
||||
Utils.checkError(ret, "clWaitForEvents"); |
||||
} |
||||
|
||||
@Override |
||||
public Event copyToAsync(CommandQueue queue, Image dest, long[] srcOrigin, long[] destOrigin, long[] region) { |
||||
if (srcOrigin.length!=3 || destOrigin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[3].rewind(); |
||||
Utils.pointerBuffers[1].put(srcOrigin).position(0); |
||||
Utils.pointerBuffers[2].put(destOrigin).position(0); |
||||
Utils.pointerBuffers[3].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueCopyImage(q, image, ((LwjglImage) dest).getImage(), |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], Utils.pointerBuffers[3], |
||||
null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public ImageMapping map(CommandQueue queue, long[] origin, long[] region, MappingAccess access) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[3].rewind(); |
||||
Utils.pointerBuffers[4].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
long flags = Utils.getMappingAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
ByteBuffer buf = CL10.clEnqueueMapImage(q, image, CL10.CL_TRUE, flags, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
Utils.pointerBuffers[3], Utils.pointerBuffers[4], null, null, |
||||
Utils.errorBuffer, null); |
||||
Utils.checkError(Utils.errorBuffer, "clEnqueueMapBuffer"); |
||||
return new ImageMapping(buf, Utils.pointerBuffers[3].get(0), Utils.pointerBuffers[4].get(0)); |
||||
} |
||||
|
||||
@Override |
||||
public ImageMapping mapAsync(CommandQueue queue, long[] origin, long[] region, MappingAccess access) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[3].rewind(); |
||||
Utils.pointerBuffers[4].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
long flags = Utils.getMappingAccessFlags(access); |
||||
Utils.errorBuffer.rewind(); |
||||
ByteBuffer buf = CL10.clEnqueueMapImage(q, image, CL10.CL_FALSE, flags, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], |
||||
Utils.pointerBuffers[3], Utils.pointerBuffers[4], null, Utils.pointerBuffers[0], |
||||
Utils.errorBuffer, null); |
||||
Utils.checkError(Utils.errorBuffer, "clEnqueueMapBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new ImageMapping(buf, Utils.pointerBuffers[3].get(0), Utils.pointerBuffers[4].get(0), new LwjglEvent(event)); |
||||
} |
||||
|
||||
@Override |
||||
public void unmap(CommandQueue queue, ImageMapping mapping) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
Utils.pointerBuffers[0].rewind(); |
||||
int ret = CL10.clEnqueueUnmapMemObject(q, image, mapping.buffer, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueUnmapMemObject"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
ret = CL10.clWaitForEvents(event); |
||||
Utils.checkError(ret, "clWaitForEvents"); |
||||
} |
||||
|
||||
@Override |
||||
public Event fillAsync(CommandQueue queue, long[] origin, long[] region, ColorRGBA color) { |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
Utils.tempBuffers[0].b16f.rewind(); |
||||
Utils.tempBuffers[0].b16f.limit(4); |
||||
Utils.tempBuffers[0].b16f.put(color.r).put(color.g).put(color.b).put(color.a); |
||||
Utils.tempBuffers[0].b16.rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL12.clEnqueueFillImage(q, image, Utils.tempBuffers[0].b16, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueFillImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
//TODO: why does q.getCLEvent(event) return null?
|
||||
//This is a bug in LWJGL: they forgot to include the line
|
||||
// if ( __result == CL_SUCCESS ) command_queue.registerCLEvent(event);
|
||||
// after the native call
|
||||
} |
||||
|
||||
@Override |
||||
public Event fillAsync(CommandQueue queue, long[] origin, long[] region, int[] color) { |
||||
if (color.length != 4) { |
||||
throw new IllegalArgumentException("the passed color array must have length 4"); |
||||
} |
||||
if (origin.length!=3 || region.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(origin).position(0); |
||||
Utils.pointerBuffers[2].put(region).position(0); |
||||
Utils.tempBuffers[0].b16i.rewind(); |
||||
Utils.tempBuffers[0].b16i.limit(4); |
||||
Utils.tempBuffers[0].b16i.put(color); |
||||
Utils.tempBuffers[0].b16.rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL12.clEnqueueFillImage(q, image, Utils.tempBuffers[0].b16, |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueFillImage"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public Event copyToBufferAsync(CommandQueue queue, Buffer dest, long[] srcOrigin, long[] srcRegion, long destOffset) { |
||||
if (srcOrigin.length!=3 || srcRegion.length!=3) { |
||||
throw new IllegalArgumentException("origin and region must both be arrays of length 3"); |
||||
} |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[2].rewind(); |
||||
Utils.pointerBuffers[1].put(srcOrigin).position(0); |
||||
Utils.pointerBuffers[2].put(srcRegion).position(0); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueCopyImageToBuffer(q, image, ((LwjglBuffer) dest).getBuffer(), |
||||
Utils.pointerBuffers[1], Utils.pointerBuffers[2], destOffset, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueCopyImageToBuffer"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
|
||||
@Override |
||||
public Event acquireImageForSharingAsync(CommandQueue queue) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueAcquireGLObjects(q, image, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueAcquireGLObjects"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
@Override |
||||
public void acquireImageForSharingNoEvent(CommandQueue queue) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueAcquireGLObjects(q, image, null, null); |
||||
Utils.checkError(ret, "clEnqueueAcquireGLObjects"); |
||||
} |
||||
@Override |
||||
public Event releaseImageForSharingAsync(CommandQueue queue) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueReleaseGLObjects(q, image, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueReleaseGLObjects"); |
||||
long event = Utils.pointerBuffers[0].get(0); |
||||
return new LwjglEvent(event); |
||||
} |
||||
@Override |
||||
public void releaseImageForSharingNoEvent(CommandQueue queue) { |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10GL.clEnqueueReleaseGLObjects(q, image, null, null); |
||||
Utils.checkError(ret, "clEnqueueReleaseGLObjects"); |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long mem; |
||||
private ReleaserImpl(long mem) { |
||||
this.mem = mem; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (mem != 0) { |
||||
int ret = CL10.clReleaseMemObject(mem); |
||||
mem = 0; |
||||
Utils.reportError(ret, "clReleaseMemObject"); |
||||
} |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,218 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.math.Quaternion; |
||||
import com.jme3.math.Vector2f; |
||||
import com.jme3.math.Vector4f; |
||||
import com.jme3.opencl.*; |
||||
import com.jme3.opencl.Buffer; |
||||
import java.nio.*; |
||||
import org.lwjgl.PointerBuffer; |
||||
import org.lwjgl.opencl.CL10; |
||||
import org.lwjgl.opencl.CLDevice; |
||||
import org.lwjgl.opencl.Info; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglKernel extends Kernel { |
||||
|
||||
private final long kernel; |
||||
|
||||
public LwjglKernel(long kernel) { |
||||
super(new ReleaserImpl(kernel)); |
||||
this.kernel = kernel; |
||||
} |
||||
|
||||
public long getKernel() { |
||||
return kernel; |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return Info.clGetKernelInfoStringASCII(kernel, CL10.CL_KERNEL_FUNCTION_NAME); |
||||
} |
||||
|
||||
@Override |
||||
public int getArgCount() { |
||||
return Info.clGetKernelInfoInt(kernel, CL10.CL_KERNEL_NUM_ARGS); |
||||
} |
||||
|
||||
@Override |
||||
public long getMaxWorkGroupSize(Device device) { |
||||
long d = ((LwjglDevice) device).getDevice(); |
||||
return Info.clGetKernelWorkGroupInfoPointer(kernel, d, CL10.CL_KERNEL_WORK_GROUP_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, LocalMemPerElement t) { |
||||
int ret = CL10.clSetKernelArg (kernel, index, t.getSize() * workGroupSize.getSizes()[0] * workGroupSize.getSizes()[1] * workGroupSize.getSizes()[2]); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, LocalMem t) { |
||||
int ret = CL10.clSetKernelArg (kernel, index, t.getSize()); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, Buffer t) { |
||||
int ret = CL10.clSetKernelArg1p(kernel, index, ((LwjglBuffer) t).getBuffer()); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, Image i) { |
||||
int ret = CL10.clSetKernelArg1p(kernel, index, ((LwjglImage) i).getImage()); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, byte b) { |
||||
int ret = CL10.clSetKernelArg1b(kernel, index, b); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, short s) { |
||||
int ret = CL10.clSetKernelArg1s(kernel, index, s); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, int i) { |
||||
int ret = CL10.clSetKernelArg1i(kernel, index, i); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, long l) { |
||||
int ret = CL10.clSetKernelArg1l(kernel, index, l); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, float f) { |
||||
int ret = CL10.clSetKernelArg1f(kernel, index, f); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, double d) { |
||||
int ret = CL10.clSetKernelArg1d(kernel, index, d); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, Vector2f v) { |
||||
int ret = CL10.clSetKernelArg2f(kernel, index, v.x, v.y); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, Vector4f v) { |
||||
int ret = CL10.clSetKernelArg4f(kernel, index, v.x, v.y, v.z, v.w); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, Quaternion q) { |
||||
int ret = CL10.clSetKernelArg4f(kernel, index, q.getX(), q.getY(), q.getZ(), q.getW()); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public void setArg(int index, ByteBuffer buffer, long size) { |
||||
buffer.limit((int) (buffer.position() + size)); |
||||
int ret = CL10.clSetKernelArg(kernel, index, buffer); |
||||
Utils.checkError(ret, "clSetKernelArg"); |
||||
} |
||||
|
||||
@Override |
||||
public Event Run(CommandQueue queue) { |
||||
Utils.pointerBuffers[0].rewind(); |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[1].put(globalWorkSize.getSizes()); |
||||
Utils.pointerBuffers[1].position(0); |
||||
PointerBuffer p2 = null; |
||||
if (workGroupSize.getSizes()[0] > 0) { |
||||
p2 = Utils.pointerBuffers[2].rewind(); |
||||
p2.put(workGroupSize.getSizes()); |
||||
p2.position(0); |
||||
} |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueNDRangeKernel(q, kernel, |
||||
globalWorkSize.getDimension(), null, Utils.pointerBuffers[1], |
||||
p2, null, Utils.pointerBuffers[0]); |
||||
Utils.checkError(ret, "clEnqueueNDRangeKernel"); |
||||
return new LwjglEvent(Utils.pointerBuffers[0].get(0)); |
||||
} |
||||
@Override |
||||
public void RunNoEvent(CommandQueue queue) { |
||||
Utils.pointerBuffers[1].rewind(); |
||||
Utils.pointerBuffers[1].put(globalWorkSize.getSizes()); |
||||
Utils.pointerBuffers[1].position(0); |
||||
PointerBuffer p2 = null; |
||||
if (workGroupSize.getSizes()[0] > 0) { |
||||
p2 = Utils.pointerBuffers[2].rewind(); |
||||
p2.put(workGroupSize.getSizes()); |
||||
p2.position(0); |
||||
} |
||||
long q = ((LwjglCommandQueue) queue).getQueue(); |
||||
int ret = CL10.clEnqueueNDRangeKernel(q, kernel, |
||||
globalWorkSize.getDimension(), null, Utils.pointerBuffers[1], |
||||
p2, null, null); |
||||
Utils.checkError(ret, "clEnqueueNDRangeKernel"); |
||||
} |
||||
|
||||
@Override |
||||
public ObjectReleaser getReleaser() { |
||||
return new ReleaserImpl(kernel); |
||||
} |
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long kernel; |
||||
private ReleaserImpl(long kernel) { |
||||
this.kernel = kernel; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (kernel != 0) { |
||||
int ret = CL10.clReleaseKernel(kernel); |
||||
kernel = 0; |
||||
Utils.reportError(ret, "clReleaseKernel"); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,128 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.Device; |
||||
import com.jme3.opencl.Platform; |
||||
import java.util.ArrayList; |
||||
import java.util.Arrays; |
||||
import java.util.Collection; |
||||
import java.util.List; |
||||
import org.lwjgl.opencl.CL10; |
||||
import org.lwjgl.opencl.CLDevice; |
||||
import org.lwjgl.opencl.CLPlatform; |
||||
import org.lwjgl.opencl.Info; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public final class LwjglPlatform implements Platform { |
||||
|
||||
final CLPlatform platform; |
||||
List<LwjglDevice> devices; |
||||
|
||||
public LwjglPlatform(CLPlatform platform) { |
||||
this.platform = platform; |
||||
} |
||||
|
||||
public CLPlatform getPlatform() { |
||||
return platform; |
||||
} |
||||
|
||||
@Override |
||||
public List<LwjglDevice> getDevices() { |
||||
if (devices == null) { |
||||
devices = new ArrayList<>(); |
||||
for (CLDevice d : platform.getDevices(CL10.CL_DEVICE_TYPE_ALL)) { |
||||
devices.add(new LwjglDevice(d, this)); |
||||
} |
||||
} |
||||
return devices; |
||||
} |
||||
|
||||
@Override |
||||
public String getProfile() { |
||||
return Info.clGetPlatformInfoStringASCII(platform.address(), CL10.CL_PLATFORM_PROFILE); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isFullProfile() { |
||||
return getProfile().contains("FULL_PROFILE"); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isEmbeddedProfile() { |
||||
return getProfile().contains("EMBEDDED_PROFILE"); |
||||
} |
||||
|
||||
@Override |
||||
public String getVersion() { |
||||
return Info.clGetPlatformInfoStringASCII(platform.address(), CL10.CL_PLATFORM_VERSION); |
||||
} |
||||
|
||||
@Override |
||||
public int getVersionMajor() { |
||||
return Utils.getMajorVersion(getVersion(), "OpenCL "); |
||||
} |
||||
|
||||
@Override |
||||
public int getVersionMinor() { |
||||
return Utils.getMinorVersion(getVersion(), "OpenCL "); |
||||
} |
||||
|
||||
@Override |
||||
public String getName() { |
||||
return Info.clGetPlatformInfoStringASCII(platform.address(), CL10.CL_PLATFORM_NAME); |
||||
} |
||||
|
||||
@Override |
||||
public String getVendor() { |
||||
return Info.clGetPlatformInfoStringASCII(platform.address(), CL10.CL_PLATFORM_VENDOR); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasExtension(String extension) { |
||||
return getExtensions().contains(extension); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasOpenGLInterop() { |
||||
return hasExtension("cl_khr_gl_sharing"); |
||||
} |
||||
|
||||
@Override |
||||
public Collection<? extends String> getExtensions() { |
||||
return Arrays.asList(Info.clGetPlatformInfoStringASCII(platform.address(), CL10.CL_PLATFORM_EXTENSIONS).split(" ")); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,178 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.*; |
||||
import java.nio.ByteBuffer; |
||||
import java.util.logging.Level; |
||||
import java.util.logging.Logger; |
||||
import org.lwjgl.BufferUtils; |
||||
import org.lwjgl.PointerBuffer; |
||||
import org.lwjgl.opencl.*; |
||||
import org.lwjgl.system.MemoryUtil; |
||||
import org.lwjgl.system.Pointer; |
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class LwjglProgram extends Program { |
||||
private static final Logger LOG = Logger.getLogger(LwjglProgram.class.getName()); |
||||
|
||||
private final long program; |
||||
private final LwjglContext context; |
||||
|
||||
public LwjglProgram(long program, LwjglContext context) { |
||||
super(new ReleaserImpl(program)); |
||||
this.program = program; |
||||
this.context = context; |
||||
} |
||||
|
||||
public long getProgram() { |
||||
return program; |
||||
} |
||||
|
||||
@Override |
||||
public void build(String args, Device... devices) throws KernelCompilationException { |
||||
PointerBuffer deviceList = null; |
||||
if (devices != null) { |
||||
deviceList = PointerBuffer.allocateDirect(devices.length); |
||||
deviceList.rewind(); |
||||
for (Device d : devices) { |
||||
deviceList.put(((LwjglDevice) d).getDevice()); |
||||
} |
||||
deviceList.flip(); |
||||
} |
||||
int ret = CL10.clBuildProgram(program, deviceList, args, null, 0); |
||||
if (ret != CL10.CL_SUCCESS) { |
||||
String log = Log(); |
||||
LOG.log(Level.WARNING, "Unable to compile program:\n{0}", log); |
||||
if (ret == CL10.CL_BUILD_PROGRAM_FAILURE) { |
||||
throw new KernelCompilationException("Failed to build program", ret, log); |
||||
} else { |
||||
Utils.checkError(ret, "clBuildProgram"); |
||||
} |
||||
} else { |
||||
LOG.log(Level.INFO, "Program compiled:\n{0}", Log()); |
||||
} |
||||
} |
||||
|
||||
private String Log() { |
||||
StringBuilder str = new StringBuilder(); |
||||
for (LwjglDevice device : context.getDevices()) { |
||||
long d = device.getDevice(); |
||||
str.append(device.getName()).append(":\n"); |
||||
str.append(Info.clGetProgramBuildInfoStringASCII(program, d, CL10.CL_PROGRAM_BUILD_LOG)); |
||||
str.append('\n'); |
||||
} |
||||
return str.toString(); |
||||
} |
||||
|
||||
@Override |
||||
public Kernel createKernel(String name) { |
||||
long kernel = CL10.clCreateKernel(program, name, Utils.errorBuffer); |
||||
Utils.checkError(Utils.errorBuffer, "clCreateKernel"); |
||||
return new LwjglKernel(kernel); |
||||
} |
||||
|
||||
@Override |
||||
public Kernel[] createAllKernels() { |
||||
Utils.tempBuffers[0].b16i.rewind(); |
||||
int ret = CL10.clCreateKernelsInProgram(program, null, Utils.tempBuffers[0].b16i); |
||||
Utils.checkError(ret, "clCreateKernelsInProgram"); |
||||
int count = Utils.tempBuffers[0].b16i.get(0); |
||||
PointerBuffer buf = PointerBuffer.allocateDirect(count); |
||||
ret = CL10.clCreateKernelsInProgram(program, buf, null); |
||||
Utils.checkError(ret, "clCreateKernelsInProgram"); |
||||
Kernel[] kx = new Kernel[count]; |
||||
for (int i=0; i<count; ++i) { |
||||
kx[i] = new LwjglKernel(buf.get()); |
||||
} |
||||
return kx; |
||||
} |
||||
|
||||
@Override |
||||
public ByteBuffer getBinary(Device d) { |
||||
throw new UnsupportedOperationException("Not supported yet, would crash the JVM"); |
||||
/* |
||||
LwjglDevice device = (LwjglDevice) d; |
||||
int numDevices = Info.clGetProgramInfoInt(program, CL10.CL_PROGRAM_NUM_DEVICES); |
||||
|
||||
PointerBuffer devices = PointerBuffer.allocateDirect(numDevices); |
||||
int ret = CL10.clGetProgramInfo(program, CL10.CL_PROGRAM_DEVICES, devices, null); |
||||
Utils.checkError(ret, "clGetProgramInfo: CL_PROGRAM_DEVICES"); |
||||
int index = -1; |
||||
for (int i=0; i<numDevices; ++i) { |
||||
if (devices.get(i) == device.getDevice()) { |
||||
index = i; |
||||
} |
||||
} |
||||
if (index == -1) { |
||||
throw new com.jme3.opencl.OpenCLException("Program was not built against the specified device "+device); |
||||
} |
||||
|
||||
PointerBuffer sizes = PointerBuffer.allocateDirect(numDevices); |
||||
ret = CL10.clGetProgramInfo(program, CL10.CL_PROGRAM_BINARY_SIZES, sizes, null); |
||||
Utils.checkError(ret, "clGetProgramInfo: CL_PROGRAM_BINARY_SIZES"); |
||||
int size = (int) sizes.get(index); |
||||
|
||||
PointerBuffer binaryPointers = PointerBuffer.allocateDirect(numDevices * 8); |
||||
for (int i=0; i<binaryPointers.capacity(); ++i) { |
||||
binaryPointers.put(0L); |
||||
} |
||||
binaryPointers.rewind(); |
||||
ByteBuffer binaries = ByteBuffer.allocateDirect(size); |
||||
binaryPointers.put(index, binaries); |
||||
|
||||
//TODO: why the hell does this throw a segfault ?!?
|
||||
ret = CL10.clGetProgramInfo(program, CL10.CL_PROGRAM_BINARIES, binaryPointers, null); |
||||
Utils.checkError(ret, "clGetProgramInfo: CL_PROGRAM_BINARIES"); |
||||
|
||||
return binaries; |
||||
*/ |
||||
} |
||||
|
||||
private static class ReleaserImpl implements ObjectReleaser { |
||||
private long program; |
||||
private ReleaserImpl(long program) { |
||||
this.program = program; |
||||
} |
||||
@Override |
||||
public void release() { |
||||
if (program != 0) { |
||||
int ret = CL10.clReleaseProgram(program); |
||||
program = 0; |
||||
Utils.reportError(ret, "clReleaseProgram"); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,155 @@ |
||||
/* |
||||
* Copyright (c) 2009-2016 jMonkeyEngine |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are |
||||
* met: |
||||
* |
||||
* * Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* * Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* |
||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
||||
* may be used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package com.jme3.opencl.lwjgl; |
||||
|
||||
import com.jme3.opencl.MappingAccess; |
||||
import com.jme3.opencl.MemoryAccess; |
||||
import com.jme3.opencl.OpenCLException; |
||||
import java.nio.*; |
||||
import java.util.logging.Level; |
||||
import java.util.logging.Logger; |
||||
import org.lwjgl.BufferUtils; |
||||
import org.lwjgl.PointerBuffer; |
||||
import org.lwjgl.opencl.*; |
||||
|
||||
|
||||
/** |
||||
* |
||||
* @author shaman |
||||
*/ |
||||
public class Utils { |
||||
private static final Logger LOG = Logger.getLogger(Utils.class.getName()); |
||||
private Utils() {} |
||||
|
||||
|
||||
public static int getMajorVersion(String version, String prefix) { |
||||
String s = version.substring(prefix.length()); |
||||
return Integer.parseInt(s); |
||||
} |
||||
|
||||
public static int getMinorVersion(String version, String prefix) { |
||||
String s = version.substring(prefix.length()); |
||||
int major = Integer.parseInt(s); |
||||
s = s.substring((int) (Math.log10(major) + 2)); |
||||
return Integer.parseInt(s); |
||||
} |
||||
|
||||
public static final class TempBuffer { |
||||
public final ByteBuffer b16; |
||||
public final ShortBuffer b16s; |
||||
public final IntBuffer b16i; |
||||
public final LongBuffer b16l; |
||||
public final FloatBuffer b16f; |
||||
public final DoubleBuffer b16d; |
||||
public TempBuffer() { |
||||
b16 = BufferUtils.createByteBuffer(16); |
||||
b16s = b16.asShortBuffer(); |
||||
b16i = b16.asIntBuffer(); |
||||
b16l = b16.asLongBuffer(); |
||||
b16f = b16.asFloatBuffer(); |
||||
b16d = b16.asDoubleBuffer(); |
||||
} |
||||
} |
||||
public static final ByteBuffer b80; //needed for ImageDescriptor
|
||||
public static final LongBuffer b80l; |
||||
public static final TempBuffer[] tempBuffers = new TempBuffer[8]; |
||||
public static final PointerBuffer[] pointerBuffers = new PointerBuffer[8]; |
||||
static { |
||||
for (int i=0; i<8; ++i) { |
||||
tempBuffers[i] = new TempBuffer(); |
||||
pointerBuffers[i] = PointerBuffer.allocateDirect(4); |
||||
} |
||||
errorBuffer = BufferUtils.createIntBuffer(1); |
||||
b80 = BufferUtils.createByteBuffer(80); |
||||
b80l = b80.asLongBuffer(); |
||||
} |
||||
|
||||
public static IntBuffer errorBuffer; |
||||
public static void checkError(IntBuffer errorBuffer, String callName) { |
||||
checkError(errorBuffer.get(0), callName); |
||||
} |
||||
public static void checkError(int error, String callName) { |
||||
if (error != CL10.CL_SUCCESS) { |
||||
String errname = getErrorName(error); |
||||
if (errname == null) { |
||||
errname = "UNKNOWN"; |
||||
} |
||||
throw new OpenCLException("OpenCL error in " + callName + ": " + errname + " (0x" + Integer.toHexString(error) + ")", error); |
||||
} |
||||
} |
||||
|
||||
public static void reportError(int error, String callName) { |
||||
if (error != CL10.CL_SUCCESS) { |
||||
String errname = getErrorName(error); |
||||
if (errname == null) { |
||||
errname = "UNKNOWN"; |
||||
} |
||||
LOG.log(Level.WARNING, "OpenCL error in {0}: {1} (0x{2})", new Object[]{callName, errname, Integer.toHexString(error)}); |
||||
} |
||||
} |
||||
|
||||
public static String getErrorName(int code) { |
||||
return CLUtil.getErrcodeName(code); |
||||
} |
||||
|
||||
public static long getMemoryAccessFlags(MemoryAccess ma) { |
||||
switch (ma) { |
||||
case READ_ONLY: return CL10.CL_MEM_READ_ONLY; |
||||
case WRITE_ONLY: return CL10.CL_MEM_WRITE_ONLY; |
||||
case READ_WRITE: return CL10.CL_MEM_READ_WRITE; |
||||
default: throw new IllegalArgumentException("Unknown memory access: "+ma); |
||||
} |
||||
} |
||||
public static MemoryAccess getMemoryAccessFromFlag(long flag) { |
||||
if ((flag & CL10.CL_MEM_READ_WRITE) > 0) { |
||||
return MemoryAccess.READ_WRITE; |
||||
} |
||||
if ((flag & CL10.CL_MEM_READ_ONLY) > 0) { |
||||
return MemoryAccess.READ_ONLY; |
||||
} |
||||
if ((flag & CL10.CL_MEM_WRITE_ONLY) > 0) { |
||||
return MemoryAccess.WRITE_ONLY; |
||||
} |
||||
throw new OpenCLException("Unknown memory access flag: "+flag); |
||||
} |
||||
|
||||
public static long getMappingAccessFlags(MappingAccess ma) { |
||||
switch (ma) { |
||||
case MAP_READ_ONLY: return CL10.CL_MAP_READ; |
||||
case MAP_READ_WRITE: return CL10.CL_MAP_READ | CL10.CL_MAP_WRITE; |
||||
case MAP_WRITE_ONLY: return CL10.CL_MAP_WRITE; |
||||
case MAP_WRITE_INVALIDATE: return CL12.CL_MAP_WRITE_INVALIDATE_REGION; |
||||
default: throw new IllegalArgumentException("Unknown mapping access: "+ma); |
||||
} |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue