UNPKG

@itwin/core-frontend

Version:
13 lines 568 B
/** @packageDocumentation * @module Rendering */ import { _implementationProhibited } from "../../common/internal/Symbols"; import { RenderMemory } from "../../render/RenderMemory"; /** An opaque representation of instructions for repeatedly drawing a [[RenderGeometry]] to pattern a planar region, * to be supplied to [[RenderSystem.createRenderGraphic]]. * @internal */ export interface RenderAreaPattern extends Disposable, RenderMemory.Consumer { readonly [_implementationProhibited]: "renderAreaPattern"; } //# sourceMappingURL=RenderAreaPattern.d.ts.map