summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* added a few CLImage junit tests.Michael Bien2010-08-072-6/+12
|
* exception msg formatting improvements.Michael Bien2010-07-191-33/+44
|
* toString() for CLEventList.Michael Bien2010-07-191-0/+13
|
* finished CLSubBuffer, added junit testcase, perf improvements and cleanup.Michael Bien2010-07-056-40/+85
| | | | CLMemory methods contain now NIO infix for nio buffer specific queries and CL infix for memory object queries.
* fixed ChannelOrder.valueOf (new CL1.1 enums).Michael Bien2010-07-041-0/+6
|
* initial import of CLSubBuffer to HLB.Michael Bien2010-07-042-1/+111
|
* misc OpenCL 1.1 HLB updates. ImageFormats, getters, javadoc.Michael Bien2010-07-044-10/+109
|
* update due to changes in JDK7's ARM spec.Michael Bien2010-07-0313-65/+30
| | | | | added AutoCloseable dummy for backwards compatibility (won't be loaded when used with JDK7) can be further improved as soon we have extension methods.
* image factory methods for CLContext.Michael Bien2010-06-282-0/+88
|
* minor refactorings and updates.Michael Bien2010-06-276-29/+11
|
* OpenCL 1.1; added 12 *BufferRect methods to CLCommandQueue.Michael Bien2010-06-271-0/+240
|
* added CLContext.getSupportedImageFormats() methods and unit test.Michael Bien2010-06-252-3/+60
|
* added CLVersion utility class and corresponding API.Michael Bien2010-06-243-4/+180
| | | | | version checks in unit tests. GLProfile.initSingleton() workaround in CLGLTest.
* issue 400 typo in CLGLTexture2d with texture id.Michael Bien2010-06-241-1/+1
|
* switched to dynamic linking. All custom code functions must be called via ↵Michael Bien2010-06-212-28/+91
| | | | funciton pointers since this point.
* implemented OpenCL 1.1 user events + JUnit test.Michael Bien2010-06-163-2/+83
|
* two new CL 1.1 exception types.Michael Bien2010-06-161-0/+26
|
* OpenCL 1.1 support.OpenCL1.1Michael Bien2010-06-151-16/+0
| | | | | | | | - updated headers - removed deprecated function from HLB - updated javadoc taglets and all references - disabled cl_vendor_ext.h since most of them are now in the official headers - TODO revisit callbacks
* Refactored LLB into two impl layers to reduce custom code injection ↵Michael Bien2010-06-081-0/+193
| | | | | | | significantly. - CLAbstractImpl is automatically generated by gluegen (former CLImpl) - CLImply is handwritten and extends CLAbstractImpl to handle special cases
* simplification in CLGLContext due to cleanup in GLContext (jogl commit: ↵Michael Bien2010-06-021-10/+7
| | | | dd0400a41478c1f36541).
* use getDisplayHandle for linux and Surface on windows for CLGL context creation.Michael Bien2010-05-311-3/+3
|
* changes due to gluegen size_t fix. Switched back to PointerBuffer. 32bit ↵Michael Bien2010-05-3110-59/+52
| | | | systems are now supported again.
* improved concurrent load test (disabled by default) and confirmed that cl ↵Michael Bien2010-05-301-5/+18
| | | | | | programs can't be built concurrently. CLProgram uses ReentrantLock to put synchronous and asynchronous calls to clBuildProgram(...) in a squence.
* added CLGLContext sharing support for EGLContexts.Michael Bien2010-05-241-11/+27
|
* status should be an direct buffer.Michael Bien2010-05-121-1/+1
|
* finished main functionality of ErrorHandler impl.Michael Bien2010-05-043-18/+93
| | | | | | - using event listener add/remove pattern instead add on context creation - context -> error handler object global reference mapping(TM) using LongLongMap in CLImpl - global ref is deleted on context release
* renamed ErrorHandler.Michael Bien2010-05-031-1/+1
|
* CLBuildListener functionality for high level bindings.Michael Bien2010-05-026-11/+130
| | | | | - uses low level BuildProgramCallback internally - updated tests, testing async builds
* added doPrivileged block around libloading logic.Michael Bien2010-04-281-4/+19
|
* continued with callbacks.Michael Bien2010-04-262-3/+2
| | | | | - started with context error callback - finished build program callback
* implemented low level BuildProgramCallbacks.Michael Bien2010-04-254-6/+15
| | | | | - removed userdata arguments from createContext* and buildProgram bindings - updated LowLevelBindingTest
* modification due to method renaming in gluegen/ProcAddressTable.Michael Bien2010-04-241-2/+1
|
* CLGLContext.create() makes GLContext current.Michael Bien2010-04-242-17/+39
| | | | | made CLContext.release() more bulletproof. added CLGLTest.
* renamed NativeLibLoader to JOCLJNILibLoader.Michael Bien2010-04-242-3/+3
|
* dynamic binding for OpenGL specific functionality.Michael Bien2010-04-244-13/+29
|
* CLContext should not throw NPE in create(...) if a device or device type is ↵Michael Bien2010-04-221-4/+12
| | | | null.
* changes due to refactorings in gluegen. (NativeLibLoaderBase->JNILibLoaderBase)Michael Bien2010-04-201-2/+2
|
* fixed buffer-offset bug in CLKernel.getCompileWorkGroupSize, optimized ↵Michael Bien2010-04-161-5/+10
| | | | buffer size on 32bit systems, enabled test.
* code review: improved exception messages to be more verbose whenever possible.Michael Bien2010-04-159-43/+86
| | | | began with CLKernel testcase.
* fixed BufferOverflowException in CLKernel.getCompileWorkGroupSize(), buffer ↵Michael Bien2010-04-151-1/+1
| | | | was to small.
* renamed package com.mbien.* in com.jogamp.* JOCL is now officially a JogAmp ↵Michael Bien2010-04-1236-149/+145
| | | | team player ;).
* fixed severe typo in putMarker() (command queue id was not used).Michael Bien2010-04-121-1/+1
|
* better Exception messages for CLCommandQueue.Michael Bien2010-04-121-38/+127
|
* fixed newly introduced index out of bounds bug.Michael Bien2010-04-071-1/+1
|
* modifications due to class movement in gluegen.Michael Bien2010-04-0115-44/+44
|
* fixed newly introduced bug in CLCommandQueue, cleanup in CLContext.Michael Bien2010-03-302-8/+8
|
* refactorings due to newly introduced Int64Buffer in gluegen.Michael Bien2010-03-3010-131/+149
|
* changes due to BufferFactory -> Buffers renaming in gluegen.Michael Bien2010-03-296-21/+21
|
* fixed imports due to changes in gluegen.Michael Bien2010-03-281-1/+1
|
* refactoring com.sun.opengl -> com.jogamp.openglMichael Bien2010-03-271-4/+4
|