Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | added CLVersion utility class and corresponding API. | Michael Bien | 2010-06-24 | 3 | -2/+27 | |
| | | | | | version checks in unit tests. GLProfile.initSingleton() workaround in CLGLTest. | |||||
* | implemented OpenCL 1.1 user events + JUnit test. | Michael Bien | 2010-06-16 | 1 | -0/+59 | |
| | ||||||
* | moved calls to program.createCLKernels() into seperate test method. | Michael Bien | 2010-06-16 | 2 | -16/+34 | |
| | | | | NV CL 1.1 devdriver has some issues in this area. | |||||
* | changes due to gluegen size_t fix. Switched back to PointerBuffer. 32bit ↵ | Michael Bien | 2010-05-31 | 2 | -17/+16 | |
| | | | | systems are now supported again. | |||||
* | improved concurrent load test (disabled by default) and confirmed that cl ↵ | Michael Bien | 2010-05-30 | 2 | -27/+78 | |
| | | | | | | programs can't be built concurrently. CLProgram uses ReentrantLock to put synchronous and asynchronous calls to clBuildProgram(...) in a squence. | |||||
* | enabled CLGLTest again... give it another try with hudson. | Michael Bien | 2010-05-23 | 1 | -4/+6 | |
| | ||||||
* | dissabled CLGL test since there is currently no way to relyable determine if ↵ | Michael Bien | 2010-05-23 | 1 | -3/+4 | |
| | | | | GLCL obj sharing is supported. | |||||
* | disabled callbacks temporary to be able to build on windows. | Michael Bien | 2010-05-12 | 3 | -0/+4 | |
| | | | | fixed a few compiler warnings. | |||||
* | CLBuildListener functionality for high level bindings. | Michael Bien | 2010-05-02 | 3 | -10/+25 | |
| | | | | | - uses low level BuildProgramCallback internally - updated tests, testing async builds | |||||
* | fixed CLProgramTest on AMD platform + GPU device. | Michael Bien | 2010-05-01 | 1 | -5/+12 | |
| | ||||||
* | continued with callbacks. | Michael Bien | 2010-04-26 | 1 | -1/+1 | |
| | | | | | - started with context error callback - finished build program callback | |||||
* | implemented low level BuildProgramCallbacks. | Michael Bien | 2010-04-25 | 1 | -5/+22 | |
| | | | | | - removed userdata arguments from createContext* and buildProgram bindings - updated LowLevelBindingTest | |||||
* | clGetExtensionFunctionAddress returns now a long. | Michael Bien | 2010-04-24 | 1 | -2/+2 | |
| | ||||||
* | CLGLContext.create() makes GLContext current. | Michael Bien | 2010-04-24 | 1 | -0/+95 | |
| | | | | | made CLContext.release() more bulletproof. added CLGLTest. | |||||
* | CLContext should not throw NPE in create(...) if a device or device type is ↵ | Michael Bien | 2010-04-22 | 1 | -0/+27 | |
| | | | | null. | |||||
* | fixed buffer-offset bug in CLKernel.getCompileWorkGroupSize, optimized ↵ | Michael Bien | 2010-04-16 | 1 | -1/+5 | |
| | | | | buffer size on 32bit systems, enabled test. | |||||
* | code review: improved exception messages to be more verbose whenever possible. | Michael Bien | 2010-04-15 | 2 | -0/+35 | |
| | | | | began with CLKernel testcase. | |||||
* | enabled LowLevelBindingTest again. | Michael Bien | 2010-04-13 | 1 | -99/+110 | |
| | ||||||
* | renamed package com.mbien.* in com.jogamp.* JOCL is now officially a JogAmp ↵ | Michael Bien | 2010-04-12 | 7 | -39/+35 | |
| | | | | team player ;). | |||||
* | modifications due to class movement in gluegen. | Michael Bien | 2010-04-01 | 4 | -6/+6 | |
| | ||||||
* | refactorings due to newly introduced Int64Buffer in gluegen. | Michael Bien | 2010-03-30 | 1 | -1/+0 | |
| | ||||||
* | modifications due to refactorings in gluegen and jogl. | Michael Bien | 2010-03-29 | 1 | -2/+2 | |
| | ||||||
* | changes due to BufferFactory -> Buffers renaming in gluegen. | Michael Bien | 2010-03-29 | 4 | -4/+4 | |
| | ||||||
* | forgot test (com.sun.opengl->com.jogamp.opengl). | Michael Bien | 2010-03-27 | 1 | -1/+1 | |
| | ||||||
* | refactoring due to gluegen changes. | Michael Bien | 2010-03-27 | 4 | -6/+6 | |
| | | | | - renamed com.sun.gluegen.runtime -> com.jogamp.gluegen.runtime. | |||||
* | even more utility methods and general awesomeness. | Michael Bien | 2010-03-16 | 1 | -0/+1 | |
| | ||||||
* | added Capabilities enum and getter to CLDevice. | Michael Bien | 2010-03-16 | 1 | -1/+6 | |
| | | | | updated tests. | |||||
* | moved utilities to util package. | Michael Bien | 2010-03-08 | 3 | -10/+18 | |
| | | | | several smaller improvements and doc fixes. | |||||
* | fixed hudson build. | Michael Bien | 2010-02-28 | 1 | -1/+2 | |
| | ||||||
* | refactored CLGLBuffer into seperate OpenGL buffer and image types. | Michael Bien | 2010-02-27 | 1 | -0/+5 | |
| | ||||||
* | improved CLProgramBuilder and implemented propper configuration loading. | Michael Bien | 2010-02-26 | 1 | -4/+15 | |
| | ||||||
* | implemented Serialization for CLProgramBuilder. | Michael Bien | 2010-02-26 | 1 | -7/+33 | |
| | | | | | | CLProgram.getBinaries() is now ordered. updated junit to 4.8.1. javadoc fixes. | |||||
* | introduced CLBuildConfiguration and CLProgramConfiguration interfaces for ↵ | Michael Bien | 2010-02-25 | 1 | -2/+1 | |
| | | | | CLProgramBuilder. | |||||
* | renamed QueueBarrier to MultiQueueBarrier. | Michael Bien | 2010-02-25 | 1 | -1/+1 | |
| | | | | added cancelBarrier and getCount. | |||||
* | initial import of CLProgramBuilder. | Michael Bien | 2010-02-24 | 1 | -1/+39 | |
| | ||||||
* | code review, spell checks and scope. | Michael Bien | 2010-02-24 | 1 | -4/+4 | |
| | ||||||
* | several small refactorings, api and javadoc improvements. | Michael Bien | 2010-02-22 | 3 | -26/+45 | |
| | | | | | added automatically generated specialized CLExceptions for each known OpenCL error. added get/set Properties to CLCommandQueue. | |||||
* | fixed CLBufferTest.mapBufferTest() for non CPU contexts. | Michael Bien | 2010-02-19 | 1 | -3/+18 | |
| | ||||||
* | added putCopyBufferToImage, putCopyImageToBuffer and putMap/UnmapBuffer ↵ | Michael Bien | 2010-02-18 | 1 | -0/+40 | |
| | | | | | | operations to CLCommandQueue. added buffer mapping test to CLBufferTest. | |||||
* | added a few tests for event profiling and enums. | Michael Bien | 2010-02-13 | 3 | -61/+164 | |
| | | | | fixed bug in LocalMemType and Mem enum valueOf(int foo) methods. | |||||
* | fixed bug in CL[GL]Context.create(..., device), added test. | Michael Bien | 2010-02-12 | 1 | -0/+41 | |
| | | | | CLKernel is now Cloneable. | |||||
* | trivial bugfixes, typo and javadoc warning fixes. | Michael Bien | 2010-02-01 | 2 | -3/+5 | |
| | | | | | | 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 Bien | 2010-01-29 | 3 | -14/+15 | |
| | | | | | refactored CLProgram kernel creation code. updated tests. | |||||
* | implemented GL interop context creation on windows and mac. | Michael Bien | 2010-01-26 | 1 | -3/+4 | |
| | | | | added more factory methods to CLGLContext. | |||||
* | switched from enum to poji as storage for common compiler options. | Michael Bien | 2010-01-22 | 1 | -2/+3 | |
| | ||||||
* | added blockingWait parameter to putWaitForEvent(...) CLCommandQueue methods. | Michael Bien | 2010-01-22 | 1 | -3/+3 | |
| | ||||||
* | dynamic dispatch via CLProcAddressTable for OpenCL extensions. | Michael Bien | 2010-01-22 | 1 | -3/+45 | |
| | | | | made CLProgram failsafe, updated tests. | |||||
* | more device properties. | Michael Bien | 2010-01-21 | 1 | -0/+14 | |
| | ||||||
* | seperated CLProgram specific tests into CLProgramTest. | Michael Bien | 2010-01-20 | 2 | -43/+93 | |
| | | | | | implemented create-program-from-binaries functionality. javadoc fixes. | |||||
* | temporary dissabled non direct NIO binding for methods containing long[] ↵ | Michael Bien | 2010-01-19 | 1 | -5/+6 | |
| | | | | | | | | 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. |