summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/CLErrorHandler.java
blob: 74d493631124be234411ab40b49895fd409c5814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.jogamp.opencl;

import java.nio.ByteBuffer;

/**
 *
 * @author Michael Bien
 */
public interface CLErrorHandler {

    public void onError(String errinfo, ByteBuffer private_info, long cb);

}