GraphicsContextFactory

Description

abstract class Tinman.Engine.Rendering.GraphicsContextFactory

Abstract base class for IGraphicsContextFactory implementations.

Public / Methods

Cannot​Create​Graphics​Context


[Pure]
public static method CannotCreateGraphicsContext → (1)

value in : IGraphicsContextFactory

The graphics context factory.

returns → bool

true if value in cannot create graphics contexts,
false if it can.

Predicate methods that returns true for all IGraphicsContextFactory objects that cannot create a graphics context (see IGraphicsContextFactory.CanCreateGraphicsContext).

Use this method to created filtered lists of viable graphics context factories (see IBag.RemoveWhere).

Config​Read


public virtual method ConfigRead → (1)

config in : ConfigValue

[not-null]
The config value.

Configures the defaults settings of the GraphicsContextFactory class from the given config value.

ConfigException

If no configurator object has been found for the type of config in or if config in specifies malformed configuration data.

ValidatingException

If config in is invalid (IValidatable.Validate).

IOException

If an unexpected I/O error has occurred while creating the native value.

Config​Write


public virtual method ConfigWrite → (1)

type in : ConfigType

[not-null]
The config value type. Must be assignable to Config. IConfiguratorBase.Type.

returns → ConfigValue

The resulting config value.

Creates a config value of the given type and populates it with the default settings of the GraphicsContextFactory class.

ConfigException

If an unexpected error has occurred while building the config value.

Protected / Constructors

Graphics​Context​Factory


protected constructor GraphicsContextFactory → (1)

name in : string

[not-empty]
Human readable name of this graphics context factory.

Creates a new instance of GraphicsContextFactory.

Protected / Methods

Do​Create​Graphics​Context


[OwnerReturn]
protected abstract method DoCreateGraphicsContext → ()

returns → IGraphicsContext

The created graphics context.

Creates the IGraphicsContext object.

RenderException

If a graphics subsystem error has occurred.

Modified


protected method Modified → ()

This method must be called when the factory properties have changed.

Configuration

Config


public static attribute Config → (get)

value : IConfigurator<IGraphicsContextFactory>

[not-null]
The configurator object.

The configurator object for this type.