Show / Hide Table of Contents

Struct OutputAttachmentDescription

Describes an individual output attachment and its format.

Implements
System.IEquatable<OutputAttachmentDescription>
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public struct OutputAttachmentDescription : IEquatable<OutputAttachmentDescription>

Constructors

OutputAttachmentDescription(PixelFormat)

Constructs a new OutputAttachmentDescription.

Declaration
public OutputAttachmentDescription(PixelFormat format)
Parameters
Type Name Description
PixelFormat format

THe format of the Texture attachment.

Fields

Format

The format of the Texture attachment.

Declaration
public PixelFormat Format
Field Value
Type Description
PixelFormat

Methods

Equals(OutputAttachmentDescription)

Element-wise equality.

Declaration
public bool Equals(OutputAttachmentDescription other)
Parameters
Type Name Description
OutputAttachmentDescription other

The instance to compare to.

Returns
Type Description
System.Boolean

True if all elements are equal; false otherswise.

GetHashCode()

Returns the hash code for this instance.

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32

A 32-bit signed integer that is the hash code for this instance.

Overrides
System.ValueType.GetHashCode()

Implements

System.IEquatable<T>
Back to top