Click or drag to resize

BgfxVertexConvert Method

Converts a stream of vertex data from one format to another.

Namespace:  Internal.SharpBgfx
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public static void VertexConvert(
	VertexLayout destinationLayout,
	IntPtr destinationData,
	VertexLayout sourceLayout,
	IntPtr sourceData,
	int count = 1
)

Parameters

destinationLayout
Type: Internal.SharpBgfxVertexLayout
The destination format.
destinationData
Type: SystemIntPtr
A pointer to the output location.
sourceLayout
Type: Internal.SharpBgfxVertexLayout
The source format.
sourceData
Type: SystemIntPtr
A pointer to the source vertex data to convert.
count (Optional)
Type: SystemInt32
The number of vertices to convert.
See Also