Axiom.Graphics.HardwareVertexBuffer.CheckIfVertexInstanceDataIsSupported C# (CSharp) Method

CheckIfVertexInstanceDataIsSupported() protected method

Checks if vertex instance data is supported by the render system
protected CheckIfVertexInstanceDataIsSupported ( ) : bool
return bool
        protected virtual bool CheckIfVertexInstanceDataIsSupported()
        {
            // Use the current render system
    	    var rs = Root.Instance.RenderSystem;

    	    // Check if the supported  
            throw new NotImplementedException();
            //return rs.Capabilities.HasCapability(Capabilities.VertexBufferInstanceData);
        }