SharpVulkan.ClearDepthStencilValue.ClearDepthStencilValue C# (CSharp) Method

ClearDepthStencilValue() public method

public ClearDepthStencilValue ( float depth, uint stencil )
depth float
stencil uint
        public ClearDepthStencilValue(float depth, uint stencil)
        {
            Depth = depth;
            Stencil = stencil;
        }
ClearDepthStencilValue