summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/CLEvent.java
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2015-10-03 14:14:25 -0500
committerWade Walker <[email protected]>2015-11-08 14:05:30 -0600
commit4f45fe8db1b5c3790ef2659995c2065807c3fe74 (patch)
tree8a0855248986e287aeaeb4e4402c4b2139b0a0bd /src/com/jogamp/opencl/CLEvent.java
parent7c7146428a0584ad38f036d24a70c15f700f9a8e (diff)
Remove use of CL*Binding interfaces
In preparation for removing the interfaces themselves
Diffstat (limited to 'src/com/jogamp/opencl/CLEvent.java')
-rw-r--r--src/com/jogamp/opencl/CLEvent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/jogamp/opencl/CLEvent.java b/src/com/jogamp/opencl/CLEvent.java
index 2d0e5568..af22e24a 100644
--- a/src/com/jogamp/opencl/CLEvent.java
+++ b/src/com/jogamp/opencl/CLEvent.java
@@ -29,7 +29,7 @@
package com.jogamp.opencl;
import com.jogamp.opencl.impl.CLTLInfoAccessor;
-import com.jogamp.opencl.llb.CLEventBinding;
+import com.jogamp.opencl.llb.CL;
import com.jogamp.opencl.llb.impl.CLEventCallback;
import com.jogamp.common.nio.PointerBuffer;
import java.nio.Buffer;
@@ -49,11 +49,11 @@ public class CLEvent extends CLObjectResource {
private final CLEventInfoAccessor eventInfo;
private final CLEventProfilingInfoAccessor eventProfilingInfo;
- private final CLEventBinding binding;
+ private final CL binding;
CLEvent(final CLContext context, final long id) {
super(context, id);
- binding = context.getPlatform().getEventBinding();
+ binding = context.getPlatform().getCLBinding();
this.eventInfo = new CLEventInfoAccessor();
this.eventProfilingInfo = new CLEventProfilingInfoAccessor();
}