aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/util/CLInfo.java
Commit message (Collapse)AuthorAgeFilesLines
* Add ability to access newer CLImpl versions for devicesWade Walker2015-11-081-1/+1
| | | | | | Added a CLPlatform method to return a CLImpl version specific to a device. This lets the user get a CLImpl12 or CLImpl20 instance which they could then cast to the right type and use to access newer CL functions than those in the default CLImpl11 object.
* Add explicit version number to original CL impl classes.Wade Walker2015-11-081-2/+2
| | | | | This makes all three versions (1.1, 1.2, and 2.0) use the same naming convention, and sets me up to use the unversioned name to factor out code common to all three.
* Code Clean-Up based on our Recommended Settings (jogamp-scripting ↵Sven Gothel2014-07-031-14/+14
| | | | | | | | | | | | | c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines
* prepare for linux/armv7 ; Adapt to gluegen changesSven Gothel2011-07-281-2/+2
|
* LLB refactoring.Michael Bien2011-05-271-1/+1
| | | | | | - split up CL into multiple sub interfaces - seperation is now feature wise - introdused llb package for low level classes
* paper work: license and file headers.Michael Bien2010-11-261-0/+28
|
* added JOCLVersion utility and integrated in CLPlatform.Michael Bien2010-11-181-17/+23
| | | | added spec version to manifest, updated CLInfo.
* added com.jogamp.util.CLInfo.Michael Bien2010-09-071-0/+59
introduced CLProperty annotation for CLDevice and CLPlatform properties. fixed bug in CLVersion.