summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLBuffer.java
Commit message (Collapse)AuthorAgeFilesLines
* added putCopyBufferToImage, putCopyImageToBuffer and putMap/UnmapBuffer ↵Michael Bien2010-02-181-2/+21
| | | | | | operations to CLCommandQueue. added buffer mapping test to CLBufferTest.
* moved all CLGL specific methods into CLGLBuffer.Michael Bien2010-01-211-23/+8
|
* more device properties.Michael Bien2010-01-211-1/+1
|
* introduced CLMemory as superclass for all memory objects.Michael Bien2010-01-181-163/+15
| | | | added CLImage, CLImage2d and CLImage3d.
* re-enabled create from host pointer CLBuffer options and added ↵Michael Bien2010-01-121-11/+25
| | | | bufferWithHostPointerTest().
* introduced CLSampler and CLEvent.Michael Bien2010-01-081-16/+18
| | | | | refactored code to use internal CLInfoAccessor utility where it makes sense. static imports.
* improved Exception handling in CLProgram and CLKernel.Michael Bien2009-11-081-1/+1
| | | | | introduced CLResource interface for releasable resources. CLProgram is now rebuildable.
* bug fixes in buffer handling.Michael Bien2009-11-051-1/+30
|
* generified CLBuffer, added createFromGLBuffer(...).Michael Bien2009-10-271-9/+17
|
* utility methods and refactoring.Michael Bien2009-10-231-64/+63
|
* 32bit compatibility.Michael Bien2009-10-221-1/+3
|
* api cleanup and refactoring.Michael Bien2009-10-221-2/+82
|
* added CLCommandQueue to CLContext's resource management code, minor fixes...Michael Bien2009-10-201-1/+2
|
* initial import of CLCommandQueue.Michael Bien2009-10-191-7/+6
| | | | | updated JUnit test to test CLCommandQueue. cleand up project dependencies.
* initial import of CLBuffer and CLKernel.Michael Bien2009-10-191-0/+70
added hashCode(), equals() and toString() methods. updated JUnit test to test new classes.