| RenderTargetFormat Constructor (NullableInt32, NullableInt32, NullableBoolean, NullableSurfaceFormat, NullableDepthFormat) |
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public RenderTargetFormat(
Nullable<int> width,
Nullable<int> height,
Nullable<bool> mipmap,
Nullable<SurfaceFormat> surfaceFormat,
Nullable<DepthFormat> depthStencilFormat
)
Public Sub New (
width As Nullable(Of Integer),
height As Nullable(Of Integer),
mipmap As Nullable(Of Boolean),
surfaceFormat As Nullable(Of SurfaceFormat),
depthStencilFormat As Nullable(Of DepthFormat)
)
public:
RenderTargetFormat(
Nullable<int> width,
Nullable<int> height,
Nullable<bool> mipmap,
Nullable<SurfaceFormat> surfaceFormat,
Nullable<DepthFormat> depthStencilFormat
)
new :
width : Nullable<int> *
height : Nullable<int> *
mipmap : Nullable<bool> *
surfaceFormat : Nullable<SurfaceFormat> *
depthStencilFormat : Nullable<DepthFormat> -> RenderTargetFormat
Parameters
- width
- Type: SystemNullableInt32
The width or if the width is undefined.
- height
- Type: SystemNullableInt32
The height or if the height is undefined.
- mipmap
- Type: SystemNullableBoolean
to enable a full mipmap chain. to disable
mipmapping. if the mipmapping behavior is undefined.
- surfaceFormat
- Type: SystemNullableSurfaceFormat
The surface format or if the surface format is undefined.
- depthStencilFormat
- Type: SystemNullableDepthFormat
The depth/stencil format or if the depth/stencil format is undefined.
Exceptions Remarks See Also