@openglobus/og 0.22.1 → 0.22.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.
@@ -292,6 +292,7 @@ declare class Renderer {
292
292
  * @public
293
293
  */
294
294
  draw(): void;
295
+ getImageDataURL(type?: string, quality?: number): string;
295
296
  protected _screenFrameMSAA(): void;
296
297
  protected _screenFrameNoMSAA(): void;
297
298
  /**
@@ -28,6 +28,7 @@ export interface IHandlerParameters {
28
28
  alpha?: boolean;
29
29
  antialias?: boolean;
30
30
  premultipliedAlpha?: boolean;
31
+ preserveDrawingBuffer?: boolean;
31
32
  };
32
33
  extensions?: string[];
33
34
  autoActivate?: boolean;
@@ -120,6 +121,7 @@ declare class Handler {
120
121
  alpha?: boolean;
121
122
  antialias?: boolean;
122
123
  premultipliedAlpha?: boolean;
124
+ preserveDrawingBuffer?: boolean;
123
125
  };
124
126
  extensions: string[];
125
127
  };