aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/llb/impl/CLImpl11.java
Commit message (Collapse)AuthorAgeFilesLines
* Factor out common custom C and Java code to reduce duplicationWade Walker2015-11-081-275/+0
| | | | | | | | | Consolidated C custom code so common functions are only defined once in the 1.1 version, then are called from the 1.2 and 2.0 version. Pulled common code in CLImpl up into the autogenerated implementation class and removed the hand-written implementation (since it was left empty). Factored custom Java code out so there was as little duplication as possible across the three CLImpl versions, with common code for all three versions in clImplCustomCode.java.
* Add explicit version number to original CL impl classes.Wade Walker2015-11-081-0/+275
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.