IGraphicsRendererCore Interface
Namespace: Stride.RenderingAssembly: 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.  | 
                          |
Properties
Enabled
Gets or sets a value indicating whether this IGraphicsRenderer is enabled.
bool Enabled { get; set; }
              Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
  | 
                  
Initialized
Gets a value indicating whether this renderer is initialized.
bool Initialized { get; }
              Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
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()