ContextSettings Constructor (UInt32, UInt32)

SFML.Net

ContextSettings Constructor (UInt32, UInt32)
Construct the settings from depth / stencil bits

Namespace: SFML.Window
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public ContextSettings(
	uint depthBits,
	uint stencilBits
)
Public Sub New ( 
	depthBits As UInteger,
	stencilBits As UInteger
)
public:
ContextSettings(
	unsigned int depthBits, 
	unsigned int stencilBits
)
new : 
        depthBits : uint32 * 
        stencilBits : uint32 -> ContextSettings

Parameters

depthBits
Type: SystemUInt32
Depth buffer bits
stencilBits
Type: SystemUInt32
Stencil buffer bits
See Also