Stride

OPEN / CLOSE
  • Features
  • Blog
  • Documentation
  • Community
(icon) Download

  • Discord
  • Facebook
  • Twitter
  • YouTube

LANGUAGE

OPEN / CLOSE
  • English
  • 日本語
    Show / Hide Table of Contents

    IGraphicsRendererCore Interface

    Namespace: Stride.Rendering
    Assembly: Stride.Rendering.dll

    The core interface of a renderer.

    public interface IGraphicsRendererCore : IDisposable
    Name Description
    Properties
    Enabled

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

    Initialized

    Gets a value indicating whether this renderer is initialized.

    Methods
    Initialize(RenderContext)

    Loads this renderer. See remarks.

    | Improve this Doc View Source

    Properties


    Enabled

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

    bool Enabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if enabled; otherwise, false.


    Initialized

    Gets a value indicating whether this renderer is initialized.

    bool Initialized { get; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Methods


    Initialize(RenderContext)

    Loads this renderer. See remarks.

    void Initialize(RenderContext context)
    Parameters
    Type Name Description
    RenderContext context

    The context.

    Remarks

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


    Inherited Members

    System.IDisposable.Dispose()

    Extension Methods

    ComponentBaseExtensions.DisposeBy<T>(T, ICollectorHolder)
    ComponentBaseExtensions.RemoveDisposeBy<T>(T, ICollectorHolder)
    • Improve this Doc
    • View Source
    In This Article

    Back to top

    Copyright © 2019-2021 .NET Foundation and Contributors
    Supported by the .NET Foundation