UNPKG

modern-canvas

Version:

A JavaScript WebGL rendering engine. only the ESM.

14 lines (13 loc) 529 B
import type { GlRenderer } from '../../core'; import type { EffectProperties, Node, Viewport } from '../main'; import { Effect } from '../main/Effect'; import { Material } from '../resources'; export interface EmbossEffectProperties extends EffectProperties { strength: number; } export declare class EmbossEffect extends Effect { static material: Material; strength: number; constructor(properties?: Partial<EmbossEffectProperties>, children?: Node[]); apply(renderer: GlRenderer, source: Viewport): void; }