Struct RenderParams
Namespace: VelloSharp
Assembly: VelloSharp.Core.dll
public readonly record struct RenderParams : IEquatable<RenderParams>
Implements
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
RenderParams(uint, uint, RgbaColor, AntialiasingMode, RenderFormat)
public RenderParams(uint Width, uint Height, RgbaColor BaseColor, AntialiasingMode Antialiasing = AntialiasingMode.Area, RenderFormat Format = RenderFormat.Rgba8)
Parameters
Width
uint
Height
uint
BaseColor
RgbaColor
Antialiasing
AntialiasingMode
Format
RenderFormat
Properties
Antialiasing
public AntialiasingMode Antialiasing { get; init; }
Property Value
BaseColor
public RgbaColor BaseColor { get; init; }
Property Value
Format
public RenderFormat Format { get; init; }
Property Value
Height
public uint Height { get; init; }
Property Value
Width
public uint Width { get; init; }