VertexDeclaration.VertexDeclaration(Device,VertexElement[]) Constructor (Microsoft.DirectX.Direct3D)
Creates a new instance of the VertexDeclaration class.
Definition
Visual Basic Public Sub New( _
ByVal device As Device, _
ByVal vertexElements() As VertexElement _
)C# public VertexDeclaration(
Device device,
VertexElement[] vertexElements
);C++ public:
VertexDeclaration(
Device^ device,
array<VertexElement>^ vertexElements
);JScript public function VertexDeclaration(
device : Device,
vertexElements : VertexElement[]
);
Parameters
device Microsoft.DirectX.Direct3D.Device
The Device object to associate with the VertexDeclaration.vertexElements Microsoft.DirectX.Direct3D.VertexElement[]
Array of VertexElement flags that make up a vertex shader declaration. The array must end with the value in the VertexElement.VertexDeclarationEnd field.