Package com.jogamp.opencl.spi
Interface CLInfoAccessor
-
- All Known Subinterfaces:
CLPlatformInfoAccessor
- All Known Implementing Classes:
CLImage.CLImageInfoAccessor
,CLTLInfoAccessor
public interface CLInfoAccessor
Internal 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)
long
getLong(int key)
Returns the long value for the given key.String
getString(int key)
Returns the String value for the given key.long
getUInt32Long(int key)
Returns theuint32_t
value for the given key, reinterpreted as along
value.
-
-
-
Method Detail
-
getInts
int[] getInts(int key, int n)
-
getUInt32Long
long getUInt32Long(int key)
Returns theuint32_t
value for the given key, reinterpreted as along
value.
-
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.
-
-