
com.jogamp.opencl.spi.CLInfoAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jocl Show documentation
Show all versions of jocl Show documentation
Java™ Binding for the OpenCL® API
/*
* Created on Thursday, May 19 2011 16:43
*/
package com.jogamp.opencl.spi;
/**
* Internal utility for common OpenCL clGetFooInfo calls.
* Provides common accessors to CL objects.
* @author Michael Bien
*/
public interface CLInfoAccessor {
int[] getInts(int key, int n);
/**
* Returns the long value for the given key.
*/
long getLong(int key);
/**
* Returns the String value for the given key.
*/
String getString(int key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy