Table of Contents

Class RenderTextureDescriptor

Namespace
Stride.Rendering.RenderTextures
Assembly
Stride.Rendering.dll
[DataContract]
[CategoryOrder(10, "Size")]
[CategoryOrder(20, "Format")]
[ContentSerializer(typeof(RenderTextureDescriptorContentSerializer))]
[ContentSerializer(typeof(DataContentSerializer<RenderTextureDescriptor>))]
public class RenderTextureDescriptor
Inheritance
RenderTextureDescriptor

Properties

ColorSpace

Gets or sets the value indicating whether the output texture is encoded into the standard RGB color space.

[Display("ColorSpace", "Format")]
public ColorSpace ColorSpace { get; set; }

Property Value

ColorSpace

Format

The format.

[Display("Format", "Format")]
public RenderTextureFormat Format { get; set; }

Property Value

RenderTextureFormat

Height

The height in pixel.

[Display(null, "Size")]
public int Height { get; set; }

Property Value

int

Width

The width in pixel.

[Display(null, "Size")]
public int Width { get; set; }

Property Value

int