diff options
author | Michael Bien <[email protected]> | 2009-10-20 00:53:50 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-10-20 00:53:50 +0200 |
commit | 7f2db980b303fa75f3830679ce65fe4ae41c30dc (patch) | |
tree | a22f4ad2a068ff0816ebc2a4ca71bb2426ee46e4 /src/com/mbien/opencl/CLDevice.java | |
parent | 224985638b2a1486e4b7da1642a4f2cc22fc8644 (diff) |
added CLCommandQueue to CLContext's resource management code, minor fixes...
Diffstat (limited to 'src/com/mbien/opencl/CLDevice.java')
-rw-r--r-- | src/com/mbien/opencl/CLDevice.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/mbien/opencl/CLDevice.java b/src/com/mbien/opencl/CLDevice.java index c69afef5..87616516 100644 --- a/src/com/mbien/opencl/CLDevice.java +++ b/src/com/mbien/opencl/CLDevice.java @@ -86,7 +86,7 @@ public final class CLDevice { public CLCommandQueue createCommandQueue(long properties) { if(context == null) throw new IllegalStateException("this device is not associated with a context"); - return new CLCommandQueue(context, this, properties); + return context.createCommandQueue(this, properties); } /*keep this package private for now, may be null*/ |