Table of Contents

Interface IGraphicsRendererCore

Namespace
Stride.Rendering
Assembly
Stride.Rendering.dll

The core interface of a renderer.

public interface IGraphicsRendererCore : IDisposable
Inherited Members
Extension Methods

Properties

Enabled

Gets or sets a value indicating whether this IGraphicsRenderer is enabled.

bool Enabled { get; set; }

Property Value

bool

true if enabled; otherwise, false.

Initialized

Gets a value indicating whether this renderer is initialized.

bool Initialized { get; }

Property Value

bool

Methods

Initialize(RenderContext)

Loads this renderer. See remarks.

void Initialize(RenderContext context)

Parameters

context RenderContext

The context.

Remarks

This method allow a renderer to prepare for rendering. This method should be called once to initialize a renderer.