| Name | Description |
---|
 | CopyDataFromImage |
Returns a new RawImageData with data from this image (stored in GPU memory).
When the image data cannot be retrieved, then null is returned.
|
 | CopyDataFromImage(Byte, Int64, Int32, Boolean) |
Copies data from image (stored in GPU memory) to the specified byte array.
Returns true when data was copied, otherwise false is returned (when image cannot be copied from GPU memory).
|
 | CopyDataToImage(Byte) |
Copies the data from the specified byte array to this image.
The layout of the image is preserved.
To set the image layout to ShaderReadOnlyOptimal or TransferSrcOptimal, call CopyDataToImage(Byte, Boolean)
and set the transitionImageToShaderReadOnlyOptimalLayout parameter accordingly.
|
 | CopyDataToImage(Byte, Boolean) |
Copies the data from the specified byte array to this image.
When transitionImageToShaderReadOnlyOptimalLayout is true, the image layout is transitioned to ShaderReadOnlyOptimal; when false the image layout is set to TransferSrcOptimal.
To preserve the image layout, call CopyDataToImage without transitionImageToShaderReadOnlyOptimalLayout parameter.
|
 | CopyDataToImage(Byte, ImageLayout, AccessFlags, PipelineStageFlags) |
Copies the data from the specified byte array to this image and set the layout of the image to the specified values.
|
 | CopyDataToImage(CommandBuffer, GpuBuffer, Byte, ImageLayout, AccessFlags, PipelineStageFlags, UInt32, UInt32) |
Copies the data from the specified byte array to this image and set the layout of the image to the specified values.
|
 | CopyDataToImageAsync(RawImageData, Boolean) |
Copies the data from the specified RawImageData to this image in the background thread.
When transitionImageToShaderReadOnlyOptimalLayout is true, the image layout is transitioned to ShaderReadOnlyOptimal; when false the image layout is set to TransferSrcOptimal.
After the data is copied, the dataCopiedCallback is called with this GpuImage as a parameter.
|
 | CopyDataToImageAsync(RawImageData, Boolean, ActionGpuImage) |
Copies the data from the specified RawImageData to this image in the background thread.
When transitionImageToShaderReadOnlyOptimalLayout is true, the image layout is transitioned to ShaderReadOnlyOptimal; when false the image layout is set to TransferSrcOptimal.
After the data is copied, the dataCopiedCallback is called with this GpuImage as a parameter.
|
 | CopyDataToImageAsync(RawImageData, ImageLayout, AccessFlags, PipelineStageFlags) |
Copies the data from the specified RawImageData to this image in the background thread and set the layout of the image to the specified values.
|
 | CopyDataToImageAsync(RawImageData, ImageLayout, AccessFlags, PipelineStageFlags, ActionGpuImage) |
Copies the data from the specified RawImageData to this image in the background thread and set the layout of the image to the specified values.
After the data is copied, the dataCopiedCallback is called with this GpuImage as a parameter.
|
 | CopyDataToImageMipMaps |
Copies the data from the array of byte array to the mip maps of this image.
|
 | Dispose | |
 | Dispose(Boolean) |
Dispose
(Overrides ComponentBaseDispose(Boolean)) |
 | GetCurrentImageLayoutAndFlags |
Gets the current image layout
|
  | GetImageAspectFlags |
Returns the ImageAspectFlags for the specified format.
|
 | GetImageLayout |
Returns information about the layout of the image for the specified mip level.
|
 | GetImageRowStride |
Returns a row stride (number of bytes in one row of image data) of the image for the specified mip level.
|
 | GetMappedMemoryPtr |
Returns an IntPtr of the mapped memory.
The IntPtr can be used to get the content of this image or to copy new content to that location.
After using the memory call UnmapMemory method.
|
 | GetMappedMemoryPtr(Int64, Int64) |
Returns an IntPtr of the mapped memory with specified offset and size.
The IntPtr can be used to get the content of this image or to copy new content to that location.
After using the memory call UnmapMemory method.
|
 | GetMappedMemorySpan |
Returns a Span that can be used to get the content of this image or copy new content to that location.
After using the memory call UnmapMemory method.
|
 | GetMappedMemorySpan(Void, Byte) | |
 | ReportRenderPassFinished |
ReportRenderPassFinished can be called after a RenderPass that uses this GpuImage as attachment has finished.
This will update the current ImageLayout and set current AccessMask to ColorAttachmentWrite and current StageMask to ColorAttachmentOutput.
|
 | Resize |
Resizes this image
|
 | ToString | (Overrides ObjectToString) |
 | UnmapMemory |
Unmaps the memory that was mapped by calling GetMappedMemoryPtr.
|