diff options
author | Sven Gothel <[email protected]> | 2013-10-12 23:30:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-12 23:30:29 +0200 |
commit | 8fefade93b3b48d5d6d3233af48c483e335203f3 (patch) | |
tree | d5cc8a3d27626ae432a4da34d50a0e0a85b04c58 /src/com/jogamp/opencl/CLCommandQueue.java | |
parent | 518fcb4730256a3aaf77cf787219d5941eb3c9b4 (diff) |
CLCommandQueue/CLException: Remove 'import static pack.class.*' for all (Easy on ClassLoader)
Diffstat (limited to 'src/com/jogamp/opencl/CLCommandQueue.java')
-rw-r--r-- | src/com/jogamp/opencl/CLCommandQueue.java | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/com/jogamp/opencl/CLCommandQueue.java b/src/com/jogamp/opencl/CLCommandQueue.java index dd5c0f66..b68c4cd0 100644 --- a/src/com/jogamp/opencl/CLCommandQueue.java +++ b/src/com/jogamp/opencl/CLCommandQueue.java @@ -28,11 +28,13 @@ package com.jogamp.opencl; -import com.jogamp.common.nio.CachedBufferFactory; -import com.jogamp.opencl.llb.gl.CLGL; -import com.jogamp.common.nio.PointerBuffer; -import com.jogamp.opencl.gl.CLGLObject; -import com.jogamp.opencl.llb.CLCommandQueueBinding; +import static com.jogamp.opencl.CLException.checkForError; +import static com.jogamp.opencl.CLException.newException; +import static com.jogamp.opencl.llb.CL.CL_SUCCESS; +import static com.jogamp.opencl.llb.CLCommandQueueBinding.CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE; +import static com.jogamp.opencl.llb.CLCommandQueueBinding.CL_QUEUE_PROFILING_ENABLE; +import static com.jogamp.opencl.util.CLUtil.clBoolean; + import java.nio.Buffer; import java.nio.ByteBuffer; import java.nio.IntBuffer; @@ -41,9 +43,11 @@ import java.util.Arrays; import java.util.EnumSet; import java.util.List; -import static com.jogamp.opencl.CLException.*; -import static com.jogamp.opencl.llb.CL.*; -import static com.jogamp.opencl.util.CLUtil.*; +import com.jogamp.common.nio.CachedBufferFactory; +import com.jogamp.common.nio.PointerBuffer; +import com.jogamp.opencl.gl.CLGLObject; +import com.jogamp.opencl.llb.CLCommandQueueBinding; +import com.jogamp.opencl.llb.gl.CLGL; /** * The command queue is used to queue a set of operations for a specific {@link CLDevice}. |