diff options
author | Michael Bien <[email protected]> | 2010-06-15 00:18:09 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-06-15 00:18:09 +0200 |
commit | 6379f5ff97582160f8e4074e083129b6322b89fe (patch) | |
tree | 0436d641e874a21bdd00784020c8f354a237576a /src/com/jogamp/opencl/CLCommandQueue.java | |
parent | 86abb5fecf48c7df8dcad653b5ec03f349558050 (diff) |
OpenCL 1.1 support.OpenCL1.1
- updated headers
- removed deprecated function from HLB
- updated javadoc taglets and all references
- disabled cl_vendor_ext.h since most of them are now in the official headers
- TODO revisit callbacks
Diffstat (limited to 'src/com/jogamp/opencl/CLCommandQueue.java')
-rw-r--r-- | src/com/jogamp/opencl/CLCommandQueue.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/com/jogamp/opencl/CLCommandQueue.java b/src/com/jogamp/opencl/CLCommandQueue.java index def422e0..f728e723 100644 --- a/src/com/jogamp/opencl/CLCommandQueue.java +++ b/src/com/jogamp/opencl/CLCommandQueue.java @@ -1483,22 +1483,6 @@ public class CLCommandQueue extends CLObject implements CLResource { return Mode.valuesOf(properties); } - /** - * Setting properties after a command queue has been created can be implementation specific, - * please refer to the specification ({@native clSetCommandQueueProperty}) or vendor documentation. - */ - public void setProperty(Mode property, boolean enabled) { - int ret = cl.clSetCommandQueueProperty(ID, property.QUEUE_MODE, clBoolean(enabled), null); - if(ret != CL_SUCCESS) { - checkForError(ret, "can not set command queue property: " + property); - } - if(enabled) { - properties |= property.QUEUE_MODE; - }else{ - properties &= ~property.QUEUE_MODE; - } - } - @Override public String toString() { return getClass().getSimpleName() +" "+getProperties()+" on "+ getDevice(); |