blob: df6f18f6cb33133ab141368cc9eab1e1672a6bed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Created on Thursday, September 02 2010 23:09
*/
package com.jogamp.opencl.impl;
/**
* A callback which is invoked by the OpenCL implementation when the memory
* object is deleted and its resources freed.
* @author Michael Bien
*/
public interface CLMemObjectDestructorCallback {
/**
*
*/
public void memoryDeallocated(long memObjID);
}
|