@predy-js/render-interface 0.1.64-beta.14 → 0.1.64-beta.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.
- package/dist/index.js +5 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -7
- package/dist/index.mjs.map +1 -1
- package/dist/statistic.js +1 -1
- package/dist/types/Geometry.d.ts +0 -5
- package/dist/types/native/AndGLContext.d.ts +0 -9
- package/dist/types/native/GeometryInternal.d.ts +6 -0
- package/dist/types/native/RendererInternal.d.ts +0 -3
- package/dist/types/native/index.d.ts +0 -3
- package/package.json +1 -1
- package/types/Geometry.ts +0 -8
- package/types/native/AndGLContext.ts +0 -12
- package/types/native/GeometryInternal.ts +5 -0
- package/types/native/MaterialInternal.ts +0 -1
- package/types/native/RendererInternal.ts +0 -3
- package/types/native/index.ts +0 -3
- package/dist/types/native/PredyNativeInternal.d.ts +0 -8
- package/dist/types/native/PredyNativeModule.d.ts +0 -3
- package/types/native/PredyNativeInternal.ts +0 -10
- package/types/native/PredyNativeModule.ts +0 -4
package/dist/index.js
CHANGED
@@ -2,13 +2,11 @@
|
|
2
2
|
* Name: @predy-js/render-interface
|
3
3
|
* Description: undefined
|
4
4
|
* Author: undefined
|
5
|
-
* Version: v0.1.64-beta.
|
5
|
+
* Version: v0.1.64-beta.2
|
6
6
|
*/
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
/******************************************************************************
|
13
11
|
Copyright (c) Microsoft Corporation.
|
14
12
|
|
@@ -4609,8 +4607,6 @@ var MarsMaterialDataBlock = /** @class */ (function () {
|
|
4609
4607
|
this._uniformValues = {};
|
4610
4608
|
// @ts-expect-error safe to assign
|
4611
4609
|
this._uniformTextures = {};
|
4612
|
-
// @ts-expect-error safe to assign
|
4613
|
-
this.uniformSemantics = {};
|
4614
4610
|
this.assignRenderer = throwDestroyedError;
|
4615
4611
|
this._isDestroyed = true;
|
4616
4612
|
};
|
@@ -4695,9 +4691,9 @@ var MarsMaterialDataBlock = /** @class */ (function () {
|
|
4695
4691
|
MarsMaterialDataBlock.prototype.clone = function (name) {
|
4696
4692
|
return new MarsMaterialDataBlock({
|
4697
4693
|
name: name,
|
4698
|
-
uniformValues:
|
4699
|
-
uniformTextures:
|
4700
|
-
uniformSemantics:
|
4694
|
+
uniformValues: this._uniformValues,
|
4695
|
+
uniformTextures: this._uniformTextures,
|
4696
|
+
uniformSemantics: this.uniformSemantics,
|
4701
4697
|
keepUboData: this._keepUboData,
|
4702
4698
|
}, this.renderer);
|
4703
4699
|
};
|
@@ -5827,7 +5823,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5827
5823
|
return MarsSharedGeometry;
|
5828
5824
|
}(MarsGeometry));
|
5829
5825
|
|
5830
|
-
consoleLog('version: ' + "0.1.64-beta.
|
5826
|
+
consoleLog('version: ' + "0.1.64-beta.2");
|
5831
5827
|
|
5832
5828
|
exports.GPUBufferOptionsMemoryShared = GPUBufferOptionsMemoryShared;
|
5833
5829
|
exports.Geometry = MarsGeometry;
|