Skip to content

FragmentColor

Description

FragmentColor initializes a Renderer compatible with the current platform’s Window or Canvas.

It returns the Renderer and a Target containing the Window/Canvas texture.

You can safely discard initializer after creating the Renderer and Target.

Alternativelly, you can create a headless Renderer by instantiating it directly: new Renderer().

Example

import { FragmentColor } from "fragmentcolor";
const canvas = document.getElementById("canvas");
[renderer, target] = FragmentColor.init(canvas);

Methods

  • init(canvas: CanvasElement | OffscreenCanvas) -> [Renderer, Target]

    Initializes a Renderer and a Target attached to the given <canvas> element or a desktop Window.