@taole/giftstage 0.3.5 → 0.3.6

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.
@@ -82,6 +82,9 @@ export declare class SVGABatchRenderer {
82
82
  private clipMeshProducerController;
83
83
  private clipMeshProducerTasks;
84
84
  private clipResourceProducers;
85
+ private clipPreparationOwners;
86
+ private liveClipPreparationControllers;
87
+ private clipTableOwnerCounts;
85
88
  private destroyed;
86
89
  private clipMeshDestroyed;
87
90
  readonly clipAnalysis: SVGAClipAnalysisCache;
@@ -253,6 +256,8 @@ export declare class SVGABatchRenderer {
253
256
  private getFrameClipMode;
254
257
  prewarmClipMeshes(entity: Pick<VideoEntity, 'spriteTable'>, options?: SVGAClipPrewarmOptions): Promise<number>;
255
258
  prewarmClipMeshesForFrame(entity: Pick<VideoEntity, 'spriteTable'>, frame: number, options?: SVGAClipPrewarmOptions): Promise<number>;
259
+ private retainClipPreparation;
260
+ private prewarmEntityClipMeshes;
256
261
  /**
257
262
  * Precompiles every immutable Shape group and uploads its static mesh once.
258
263
  * Hybrid table promotion waits for this preparation so the first promoted
@@ -23,7 +23,6 @@ export declare class SVGAClipAnalysisCache {
23
23
  private tables;
24
24
  private resourcePaths;
25
25
  private pathUsers;
26
- private released;
27
26
  hits: number;
28
27
  trackHits: boolean;
29
28
  retain(table: VideoEntity['spriteTable'], path: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taole/giftstage",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "High-performance WebGPU/WebGL gift animation player unifying SVGA, VAP, AlphaVideo, and images",
5
5
  "type": "module",
6
6
  "main": "dist/gift-stage.cjs",