openvideo 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-DX5d9IHl.js";
2
- import "./webworkerAll-VNDkFiQ2.js";
1
+ import { e as a, A as e, C as i, a as s, E as t, F as n, D as d } from "./index-BXuEu2AS.js";
2
+ import "./webworkerAll-BPHrCidF.js";
3
3
  a.add(e);
4
4
  a.mixin(i, s);
5
5
  a.add(t);
@@ -591,16 +591,9 @@ export declare const VALUES_FILTER_SPECIAL_LIMITS: {
591
591
  };
592
592
  pixelateFilter: {
593
593
  size: {
594
- x: {
595
- min: number;
596
- max: number;
597
- step: number;
598
- };
599
- y: {
600
- min: number;
601
- max: number;
602
- step: number;
603
- };
594
+ min: number;
595
+ max: number;
596
+ step: number;
604
597
  };
605
598
  };
606
599
  radialBlurFilter: {
@@ -5,5 +5,5 @@ export declare function makeEffect({ name, renderer, values }: EffectOptions): P
5
5
  render({ canvasTexture }: EffectRendererOptions): Texture<import('pixi.js').TextureSource<any>>;
6
6
  } | {
7
7
  filter: any;
8
- render({ width, height, canvasTexture, progress }: EffectRendererOptions): RenderTexture;
8
+ render({ width, height, canvasTexture, progress, values: runtimeValues, }: EffectRendererOptions): RenderTexture;
9
9
  }>;
@@ -10,6 +10,7 @@ export interface EffectRendererOptions {
10
10
  progress: number;
11
11
  width: number;
12
12
  height: number;
13
+ values?: Record<string, any>;
13
14
  }
14
15
  export interface GLEffect {
15
16
  author?: string;