From 6379f5ff97582160f8e4074e083129b6322b89fe Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Tue, 15 Jun 2010 00:18:09 +0200 Subject: OpenCL 1.1 support. - 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 --- src/com/jogamp/opencl/CLCommandQueue.java | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/com/jogamp/opencl/CLCommandQueue.java') 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(); -- cgit v1.2.3