blob: d14e470a1ea872d616271f197ef819c4bbabf567 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Created on Tuesday, September 07 2010 15:35
*/
package com.jogamp.opencl;
import com.jogamp.opencl.util.CLUtil;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* OpenCL property.
* @author Michael Bien
* @see CLUtil#obtainDeviceProperties(com.jogamp.opencl.CLDevice)
* @see CLUtil#obtainPlatformProperties(com.jogamp.opencl.CLPlatform)
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CLProperty {
/**
* The property key.
*/
String value();
}
|