Package | Description |
---|---|
com.jogamp.opencl |
High level java bindings to OpenCL.
|
Modifier and Type | Method and Description |
---|---|
CLMemory.Map |
CLMemory.Map.valueOf(int flag) |
static CLMemory.Map |
CLMemory.Map.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CLMemory.Map[] |
CLMemory.Map.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
CLCommandQueue.putMapBuffer(CLBuffer<?> buffer,
CLMemory.Map flag,
boolean blockingMap)
Calls clEnqueueMapBuffer.
|
ByteBuffer |
CLCommandQueue.putMapBuffer(CLBuffer<?> buffer,
CLMemory.Map flag,
boolean blockingMap,
CLEventList events)
Calls clEnqueueMapBuffer.
|
ByteBuffer |
CLCommandQueue.putMapBuffer(CLBuffer<?> buffer,
CLMemory.Map flag,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapBuffer.
|
ByteBuffer |
CLCommandQueue.putMapBuffer(CLBuffer<?> buffer,
CLMemory.Map flag,
long offset,
long length,
boolean blockingMap)
Calls clEnqueueMapBuffer.
|
ByteBuffer |
CLCommandQueue.putMapBuffer(CLBuffer<?> buffer,
CLMemory.Map flag,
long offset,
long length,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapBuffer.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage2d<?> image,
CLMemory.Map flag,
boolean blockingMap)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage2d<?> image,
CLMemory.Map flag,
boolean blockingMap,
CLEventList events)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage2d<?> image,
CLMemory.Map flag,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage2d<?> buffer,
CLMemory.Map flag,
int offsetX,
int offsetY,
int rangeX,
int rangeY,
boolean blockingMap)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage2d<?> image,
CLMemory.Map flag,
int offsetX,
int offsetY,
int rangeX,
int rangeY,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage3d<?> image,
CLMemory.Map flag,
boolean blockingMap)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage3d<?> image,
CLMemory.Map flag,
boolean blockingMap,
CLEventList events)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage3d<?> image,
CLMemory.Map flag,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage3d<?> image,
CLMemory.Map flag,
int offsetX,
int offsetY,
int offsetZ,
int rangeX,
int rangeY,
int rangeZ,
boolean blockingMap)
Calls clEnqueueMapImage.
|
ByteBuffer |
CLCommandQueue.putMapImage(CLImage3d<?> image,
CLMemory.Map flag,
int offsetX,
int offsetY,
int offsetZ,
int rangeX,
int rangeY,
int rangeZ,
boolean blockingMap,
CLEventList condition,
CLEventList events)
Calls clEnqueueMapImage.
|