CSharpGL.PointSpriteState.PointSpriteState C# (CSharp) Method

PointSpriteState() public method

public PointSpriteState ( )
        public PointSpriteState()
        {
            this.StateList = new GLStateList();
            this.StateList.Add(new PointSmoothState());
            this.StateList.Add(new DepthTestState());
            this.StateList.Add(new BlendState(
                BlendingSourceFactor.SourceAlpha,
                BlendingDestinationFactor.OneMinusSourceAlpha));
        }