Create a texture of width and height on device and fill it with argbColor.

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

Syntax

C#
public static Texture CreateColoredTexture(
	Device device,
	int width,
	int height,
	uint argbColor
)

Parameters

device
Type: Device
The device to create the texture on.
width
Type: System..::..Int32
The width of the texture.
height
Type: System..::..Int32
The height of the texture.
argbColor
Type: System..::..UInt32
The color to fill the texture with.

Return Value

The newly created texture.

See Also