diff options
author | Michael Bien <[email protected]> | 2010-11-18 22:55:14 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-18 22:55:14 +0100 |
commit | f2eb78947c79d09dbe19e56b03da4119013e8e0e (patch) | |
tree | a2aabad5deccbd45b9994dafff21bb3251ee3c76 | |
parent | 49897769100b6c236ca1e451775e478c1eee2633 (diff) |
fix for #426. No events created in CLCommandQueue.putMarker(events).
-rw-r--r-- | src/com/jogamp/opencl/CLCommandQueue.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/jogamp/opencl/CLCommandQueue.java b/src/com/jogamp/opencl/CLCommandQueue.java index fe22e202..4473621d 100644 --- a/src/com/jogamp/opencl/CLCommandQueue.java +++ b/src/com/jogamp/opencl/CLCommandQueue.java @@ -1306,6 +1306,7 @@ public class CLCommandQueue extends CLObject implements CLResource { if(ret != CL_SUCCESS) { throw newException(ret, "can not enqueue marker " + events); } + events.createEvent(context); return this; } |