@predy-js/render-interface 0.3.3-beta.5 → 0.3.3-beta.8

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.
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @predy-js/render-interface
3
3
  * Description: undefined
4
4
  * Author: undefined
5
- * Version: v0.3.3-beta.5
5
+ * Version: v0.3.3-beta.8
6
6
  */
7
7
 
8
8
  'use strict';
@@ -5914,7 +5914,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
5914
5914
  return MarsSharedGeometry;
5915
5915
  }(MarsGeometry));
5916
5916
 
5917
- consoleLog('version: ' + "0.3.3-beta.5");
5917
+ consoleLog('version: ' + "0.3.3-beta.8");
5918
5918
  var ModuleMsg = 'RI Package: @predy-js/render-interface';
5919
5919
 
5920
5920
  var RI = /*#__PURE__*/Object.freeze({
package/dist/index.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @predy-js/render-interface
3
3
  * Description: undefined
4
4
  * Author: undefined
5
- * Version: v0.3.3-beta.5
5
+ * Version: v0.3.3-beta.8
6
6
  */
7
7
 
8
8
  /******************************************************************************
@@ -5910,7 +5910,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
5910
5910
  return MarsSharedGeometry;
5911
5911
  }(MarsGeometry));
5912
5912
 
5913
- consoleLog('version: ' + "0.3.3-beta.5");
5913
+ consoleLog('version: ' + "0.3.3-beta.8");
5914
5914
  var ModuleMsg = 'RI Package: @predy-js/render-interface';
5915
5915
 
5916
5916
  var RI = /*#__PURE__*/Object.freeze({
package/dist/statistic.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @predy-js/render-interface
3
3
  * Description: undefined
4
4
  * Author: undefined
5
- * Version: v0.3.3-beta.5
5
+ * Version: v0.3.3-beta.8
6
6
  */
7
7
 
8
8
  // https://github.com/greggman/webgl-memory/blob/main/src/texture-utils.js
@@ -23,6 +23,7 @@ export declare abstract class TextureInternal implements ResourceInternal {
23
23
  readonly height: number;
24
24
  readonly name: string;
25
25
  readonly options: TextureInternalOptions;
26
+ readonly error?: number;
26
27
  protected constructor(options: TextureInternalConstructOptions);
27
28
  abstract resize(width: number, height: number): boolean;
28
29
  abstract destroy(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@predy-js/render-interface",
3
- "version": "0.3.3-beta.5",
3
+ "version": "0.3.3-beta.8",
4
4
  "license": "MIT",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",
@@ -32,6 +32,8 @@ export abstract class TextureInternal implements ResourceInternal {
32
32
 
33
33
  readonly options: TextureInternalOptions;
34
34
 
35
+ readonly error?: number;
36
+
35
37
  protected constructor (options: TextureInternalConstructOptions) {
36
38
  }
37
39