blob: a73b6298e56a81b24bca2e1f3261674a3e980226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.jogamp.opencl;
import java.nio.ByteBuffer;
/**
*
* @author Michael Bien
*/
// TODO implement callbacks
public interface CreateContextCallback {
public void createContextCallback(String errinfo, ByteBuffer private_info, long cb);
}
|