Click or drag to resize
AB4D logo

DXViewRenderedBitmapReadyDelegate Delegate

RenderedBitmapReadyDelegate is used in RenderToBitmap and defines width, height and DataBox parameters and is called when the rendered bitmap is ready to be copied from GPU mapped memory to main memory.

Namespace: Ab3d.DirectX.Controls
Assembly: Ab3d.DXEngine.Wpf (in Ab3d.DXEngine.Wpf.dll) Version: 7.0.8865.1045
Syntax
C#
public delegate void RenderedBitmapReadyDelegate(
	int width,
	int height,
	DataBox data
)

Parameters

width  Int32
width of the rendered bitmap
height  Int32
height of the rendered bitmap
data  DataBox
DataBox with mapped bitmap data
See Also