Skip to content

RawRenderOptions

ts
type RawRenderOptions = {
  target?: RenderTarget | null;
  clear?: boolean;
};

Options shared by raw and managed render functions.

Properties

PropertyTypeDescription
target?| RenderTarget | nullTemporary render target for this invocation.
clear?booleanWhether to clear the target after binding it.

Released under the MIT License.