diff options
author | Michael Bien <[email protected]> | 2010-06-25 00:18:16 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-06-25 00:18:16 +0200 |
commit | b6d6f75129cac5f4719d1cbfb3c0b63159086137 (patch) | |
tree | cc1780cba01108e6044e39a85832cf0df63de9d7 /src/com/jogamp/opencl/CLContext.java | |
parent | 735c9cbbec16457358eee7424a0533fcc1b8c64c (diff) |
added CLContext.getSupportedImageFormats() methods and unit test.
Diffstat (limited to 'src/com/jogamp/opencl/CLContext.java')
-rw-r--r-- | src/com/jogamp/opencl/CLContext.java | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/CLContext.java b/src/com/jogamp/opencl/CLContext.java index 72694d61..5deaf4cf 100644 --- a/src/com/jogamp/opencl/CLContext.java +++ b/src/com/jogamp/opencl/CLContext.java @@ -1,10 +1,10 @@ package com.jogamp.opencl; import com.jogamp.opencl.CLDevice.Type; -import com.jogamp.opencl.CLMemory.Mem; import com.jogamp.opencl.CLSampler.AddressingMode; import com.jogamp.opencl.CLSampler.FilteringMode; import com.jogamp.common.nio.PointerBuffer; +import com.jogamp.opencl.impl.CLImageFormatImpl; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; @@ -27,6 +27,8 @@ import static java.lang.System.*; import static com.jogamp.opencl.CLException.*; import static com.jogamp.common.nio.Buffers.*; import static com.jogamp.common.os.Platform.*; +import static com.jogamp.opencl.CL.*; +import static com.jogamp.opencl.CLBuffer.*; /** * CLContext is responsible for managing objects such as command-queues, memory, @@ -414,6 +416,50 @@ public class CLContext extends CLObject implements CLResource { device.setContext(this); } + private CLImageFormat[] getSupportedImageFormats(int flags, int type) { + + int[] entries = new int[1]; + int ret = cl.clGetSupportedImageFormats(ID, flags, type, 0, null, entries, 0); + if(ret != CL_SUCCESS) { + throw newException(ret, "error calling clGetSupportedImageFormats"); + } + + int count = entries[0]; + if(count == 0) { + return new CLImageFormat[0]; + } + + CLImageFormat[] formats = new CLImageFormat[count]; + CLImageFormatImpl impl = CLImageFormatImpl.create(newDirectByteBuffer(count * CLImageFormatImpl.size())); + ret = cl.clGetSupportedImageFormats(ID, flags, type, count, impl, null, 0); + if(ret != CL_SUCCESS) { + throw newException(ret, "error calling clGetSupportedImageFormats"); + } + + ByteBuffer buffer = impl.getBuffer(); + for (int i = 0; i < formats.length; i++) { + formats[i] = new CLImageFormat(CLImageFormatImpl.create(buffer.slice())); + buffer.position(i*CLImageFormatImpl.size()); + } + + return formats; + + } + + /** + * Returns all supported 2d image formats with the (optional) memory allocation flags. + */ + public CLImageFormat[] getSupportedImage2dFormats(Mem... flags) { + return getSupportedImageFormats(flags==null?0:Mem.flagsToInt(flags), CL_MEM_OBJECT_IMAGE2D); + } + + /** + * Returns all supported 3d image formats with the (optional) memory allocation flags. + */ + public CLImageFormat[] getSupportedImage3dFormats(Mem... flags) { + return getSupportedImageFormats(flags==null?0:Mem.flagsToInt(flags), CL_MEM_OBJECT_IMAGE3D); + } + /** * Returns the CLPlatform this context is running on. */ |