Slide 18
Slide 18 text
PAINT WORKLET CLASS
class Painter {
static get inputProperties() {
return ['--custom-palette', 'color'];
}
static get inputArguments() {
return ['', ''];
}
paint(ctx, geom, props, args) {}
}
registerPaint('my-painter', Painter);