Retrievies the value at position row, col from a data buffer of width width.

Namespace: VVVV.Utils.SlimDX
Assembly: VVVV.Utils3rdParty (in VVVV.Utils3rdParty.dll) Version: 1.0.4694.10872

Syntax

C#
public static uint GetPtrVal2D(
	uint* data,
	int row,
	int col,
	int width
)

Parameters

data
Type: System..::..UInt32*
The pointer to the data buffer to retrieve the value from.
row
Type: System..::..Int32
The row.
col
Type: System..::..Int32
The column.
width
Type: System..::..Int32
The width of the data buffer.

Return Value

The value at position row, col.

See Also