summaryrefslogtreecommitdiffstats
path: root/src/com
Commit message (Collapse)AuthorAgeFilesLines
* introduced CLBuildConfiguration and CLProgramConfiguration interfaces for ↵Michael Bien2010-02-255-50/+157
| | | | CLProgramBuilder.
* renamed QueueBarrier to MultiQueueBarrier.Michael Bien2010-02-251-14/+38
| | | | added cancelBarrier and getCount.
* initial import of CLProgramBuilder.Michael Bien2010-02-242-20/+174
|
* code review, spell checks and scope.Michael Bien2010-02-249-20/+20
|
* code review. Fixed typos in javadoc and fixed some warnings.Michael Bien2010-02-2410-62/+49
|
* introduced CLObject as common superclass for all OpenCL objects.Michael Bien2010-02-2210-110/+145
|
* several small refactorings, api and javadoc improvements.Michael Bien2010-02-229-169/+768
| | | | | added automatically generated specialized CLExceptions for each known OpenCL error. added get/set Properties to CLCommandQueue.
* added custom cl_vendor_ext.h with a set of NV vendor extensions which are ↵Michael Bien2010-02-211-0/+3
| | | | | | not yet in the official headers. updated CLException with CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR cause.
* enabled automatic download of cl_ext.h in build.Michael Bien2010-02-211-4/+3
| | | | enabled CL_PLATFORM_NOT_FOUND_KHR exception cause (OpenCL headers have been fixed).
* added ERROR status to CLEvent.Michael Bien2010-02-191-3/+17
|
* fixed CLBufferTest.mapBufferTest() for non CPU contexts.Michael Bien2010-02-191-0/+6
|
* enabled putMapImage methods in CLCommandQueue.Michael Bien2010-02-191-2/+2
| | | | added slightly modified mapImage implementation via custom code for mapped image buffer size calculation in the glue layer.
* fixed CLImage2d methods, range/offset buffers have now correct values for ↵Michael Bien2010-02-193-16/+39
| | | | | | the third element. javadoc fixes and two more factory methods for CLGLBuffer.
* added putCopyBufferToImage, putCopyImageToBuffer and putMap/UnmapBuffer ↵Michael Bien2010-02-184-19/+325
| | | | | | operations to CLCommandQueue. added buffer mapping test to CLBufferTest.
* added a few tests for event profiling and enums.Michael Bien2010-02-132-2/+4
| | | | fixed bug in LocalMemType and Mem enum valueOf(int foo) methods.
* fixed bug in CL[GL]Context.create(..., device), added test.Michael Bien2010-02-124-12/+32
| | | | CLKernel is now Cloneable.
* CLKernel can now optionally force 64bit args to passed as 32bit args to OpenCL.Michael Bien2010-02-011-2/+27
|
* trivial bugfixes, typo and javadoc warning fixes.Michael Bien2010-02-018-11/+97
| | | | | | began to switch to gluegen's libloading infrastructure. added CL extensions accessors to CLPlatform. optimized isFooEnabled() methods for CLCommandQueue.
* splitted CLImageFormat into CLImageFormat and (generated) CLImageFormatImpl.Michael Bien2010-01-297-106/+426
| | | | | refactored CLProgram kernel creation code. updated tests.
* implemented GL interop context creation on windows and mac.Michael Bien2010-01-263-56/+121
| | | | added more factory methods to CLGLContext.
* more direct NIO.Michael Bien2010-01-253-24/+30
|
* internal refactoring.Michael Bien2010-01-251-22/+34
|
* CLImage support for CLCommandQueue.Michael Bien2010-01-254-36/+217
|
* added obtain[Device|Platform]Properties() methods to CLUtils.Michael Bien2010-01-232-0/+130
| | | | | added preferred vector width utility accessors to CLDevice. put impl package on javadoc ignore list.
* switched from enum to poji as storage for common compiler options.Michael Bien2010-01-221-36/+46
|
* added blockingWait parameter to putWaitForEvent(...) CLCommandQueue methods.Michael Bien2010-01-223-6/+8
|
* dynamic dispatch via CLProcAddressTable for OpenCL extensions.Michael Bien2010-01-221-3/+38
| | | | made CLProgram failsafe, updated tests.
* small win32 fix in build setup and 32bit compatibility fix for CLDevice.Michael Bien2010-01-221-1/+6
|
* moved all CLGL specific methods into CLGLBuffer.Michael Bien2010-01-214-68/+107
|
* more device properties.Michael Bien2010-01-214-4/+37
|
* forgot file in last commit.Michael Bien2010-01-201-1/+9
|
* seperated CLProgram specific tests into CLProgramTest.Michael Bien2010-01-205-12/+117
| | | | | implemented create-program-from-binaries functionality. javadoc fixes.
* temporary dissabled non direct NIO binding for methods containing long[] ↵Michael Bien2010-01-195-63/+80
| | | | | | | | since its broken on 32bit systems. refactored high level binding to use direct NIO exclusively. temporary dissabled low level binding junit tests. green bar on 32 and 64 bit systems.
* introduced CLMemory as superclass for all memory objects.Michael Bien2010-01-1810-212/+485
| | | | added CLImage, CLImage2d and CLImage3d.
* more utility getters for CLDevice.Michael Bien2010-01-161-17/+112
|
* improved QueueBarrier added constructor to restrict barriers to certain queues.Michael Bien2010-01-152-1/+74
| | | | temporary added getGLObjectType to CLGLContext.
* CLInfoAccessor uses now threadlocal direct nio buffers for all operations.Michael Bien2010-01-155-35/+137
| | | | | javadoc improvements. added event based profiling functionality.
* added Option enum for common build optons (contains all specified flags as ↵Michael Bien2010-01-151-3/+118
| | | | of OpenCL 1.0).
* fixed bug in number of kernel arguments query.Michael Bien2010-01-151-5/+6
|
* cleaned up NioDirectOnly list, added clSetKernelArg to list.Michael Bien2010-01-143-24/+98
| | | | | | added experimental QueueBarrier for easy synchronization between multiple concurrent CLCommandQueues. refactored CLCommandQueue, added putTask(). added another concurrency JUnit test.
* refactored HighLevelBindingTest into seperate tests.Michael Bien2010-01-132-3/+6
| | | | added CLConcurrencyTest and fixed some bugs in CLEvent codepaths.
* re-enabled create from host pointer CLBuffer options and added ↵Michael Bien2010-01-121-11/+25
| | | | bufferWithHostPointerTest().
* introduced CLEventList, an optimized nio collecton for storing CLEvents.Michael Bien2010-01-123-44/+294
| | | | | | added hashCode() and equals() to CLEvent. CLEvent support in CLCommandQueue. Several NIO optimizations.
* introduced CLSampler and CLEvent.Michael Bien2010-01-0812-215/+558
| | | | | refactored code to use internal CLInfoAccessor utility where it makes sense. static imports.
* added put/rewind idiom to CLKernel for function arguments.Michael Bien2010-01-071-0/+49
|
* fixed shared context creation code.Michael Bien2010-01-021-1/+5
|
* introduced CLGLContext, refactored dependencies, cleanup in opencl code.Michael Bien2010-01-023-23/+106
|
* fixed gcc setup on mac.Michael Bien2009-12-026-21/+24
| | | | | updated native taglet toc url. fixed small bug in cl char[] -> String conversion.
* improved Exception handling in CLProgram and CLKernel.Michael Bien2009-11-087-57/+154
| | | | | introduced CLResource interface for releasable resources. CLProgram is now rebuildable.
* added more buffer creation factory methods.Michael Bien2009-11-061-13/+50
|