diff options
author | Wade Walker <[email protected]> | 2015-10-03 14:14:25 -0500 |
---|---|---|
committer | Wade Walker <[email protected]> | 2015-11-08 14:05:30 -0600 |
commit | 4f45fe8db1b5c3790ef2659995c2065807c3fe74 (patch) | |
tree | 8a0855248986e287aeaeb4e4402c4b2139b0a0bd /src/com/jogamp/opencl/CLEventList.java | |
parent | 7c7146428a0584ad38f036d24a70c15f700f9a8e (diff) |
Remove use of CL*Binding interfaces
In preparation for removing the interfaces themselves
Diffstat (limited to 'src/com/jogamp/opencl/CLEventList.java')
-rw-r--r-- | src/com/jogamp/opencl/CLEventList.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/jogamp/opencl/CLEventList.java b/src/com/jogamp/opencl/CLEventList.java index b415da09..806a0661 100644 --- a/src/com/jogamp/opencl/CLEventList.java +++ b/src/com/jogamp/opencl/CLEventList.java @@ -108,7 +108,7 @@ public final class CLEventList implements CLResource, AutoCloseable, Iterable<CL */ public void waitForEvents() { if(size > 0) { - events[0].getPlatform().getEventBinding().clWaitForEvents(size, IDsView); + events[0].getPlatform().getCLBinding().clWaitForEvents(size, IDsView); } } @@ -122,7 +122,7 @@ public final class CLEventList implements CLResource, AutoCloseable, Iterable<CL } final PointerBuffer view = getEventBuffer(start); - getEvent(start).getPlatform().getEventBinding().clWaitForEvents(range, view); + getEvent(start).getPlatform().getCLBinding().clWaitForEvents(range, view); } /** @@ -130,7 +130,7 @@ public final class CLEventList implements CLResource, AutoCloseable, Iterable<CL */ public void waitForEvent(final int index) { final PointerBuffer view = getEventBuffer(index); - getEvent(index).getPlatform().getEventBinding().clWaitForEvents(1, view); + getEvent(index).getPlatform().getCLBinding().clWaitForEvents(1, view); } /** |