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/CLPlatform.java | |
parent | 7c7146428a0584ad38f036d24a70c15f700f9a8e (diff) |
Remove use of CL*Binding interfaces
In preparation for removing the interfaces themselves
Diffstat (limited to 'src/com/jogamp/opencl/CLPlatform.java')
-rw-r--r-- | src/com/jogamp/opencl/CLPlatform.java | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/com/jogamp/opencl/CLPlatform.java b/src/com/jogamp/opencl/CLPlatform.java index 11a562c5..dfb7dafa 100644 --- a/src/com/jogamp/opencl/CLPlatform.java +++ b/src/com/jogamp/opencl/CLPlatform.java @@ -538,50 +538,6 @@ public class CLPlatform { return info; } - protected CLBufferBinding getBufferBinding() { - return cl; - } - - protected CLCommandQueueBinding getCommandQueueBinding() { - return cl; - } - - protected CLContextBinding getContextBinding() { - return cl; - } - - protected CLDeviceBinding getDeviceBinding() { - return cl; - } - - protected CLEventBinding getEventBinding() { - return cl; - } - - protected CLImageBinding getImageBinding() { - return cl; - } - - protected CLKernelBinding getKernelBinding() { - return cl; - } - - protected CLMemObjBinding getMemObjectBinding() { - return cl; - } - - protected CLPlatformBinding getPlatformBinding() { - return cl; - } - - protected CLProgramBinding getProgramBinding() { - return cl; - } - - protected CLSamplerBinding getSamplerBinding() { - return cl; - } - protected CL getCLBinding() { return cl; } |