Package com.jogamp.opencl.spi
Interface CLInfoAccessor
-
- All Known Subinterfaces:
CLPlatformInfoAccessor
- All Known Implementing Classes:
CLImage.CLImageInfoAccessor,CLTLInfoAccessor
public interface CLInfoAccessorInternal utility for common OpenCL clGetFooInfo calls. Provides common accessors to CL objects.- Author:
- Michael Bien, et al.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]getInts(int key, int n)longgetLong(int key)Returns the long value for the given key.StringgetString(int key)Returns the String value for the given key.longgetUInt32Long(int key)Returns theuint32_tvalue for the given key, reinterpreted as alongvalue.
-
-
-
Method Detail
-
getInts
int[] getInts(int key, int n)
-
getUInt32Long
long getUInt32Long(int key)
Returns theuint32_tvalue for the given key, reinterpreted as alongvalue.
-
getLong
long getLong(int key)
Returns the long value for the given key.
-
getString
String getString(int key)
Returns the String value for the given key.
-
-