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

/**
 * Releasable OpenCL resource.
 * @author Michael Bien
 */
public interface CLResource {

    /**
     * Releases the OpenCL resource.
     */
    public void release();

}