Axiom.RenderSystems.DirectX9.D3DVertexDeclaration.AddElement C# (CSharp) Метод

AddElement() публичный Метод

public AddElement ( short source, int offset, VertexElementType type, VertexElementSemantic semantic, int index ) : VertexElement
source short
offset int
type VertexElementType
semantic VertexElementSemantic
index int
Результат Axiom.Graphics.VertexElement
		public override Axiom.Graphics.VertexElement AddElement( short source, int offset, VertexElementType type, VertexElementSemantic semantic, int index )
		{
			Axiom.Graphics.VertexElement element = base.AddElement( source, offset, type, semantic, index );

			needsRebuild = true;

			return element;
		}