@predy-js/render-interface 0.1.64-beta.15 → 0.1.64-beta.4
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 -7
- 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/native/AndGLContext.d.ts +0 -9
- 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/native/AndGLContext.ts +0 -12
- 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 -5
- package/dist/types/native/PredyNativeModule.d.ts +0 -3
- package/types/native/PredyNativeInternal.ts +0 -6
- package/types/native/PredyNativeModule.ts +0 -4
- package/types/native/declare.d.ts +0 -5
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.1.64-beta.
|
5
|
+
* Version: v0.1.64-beta.4
|
6
6
|
*/
|
7
7
|
|
8
8
|
/******************************************************************************
|
@@ -4605,8 +4605,6 @@ var MarsMaterialDataBlock = /** @class */ (function () {
|
|
4605
4605
|
this._uniformValues = {};
|
4606
4606
|
// @ts-expect-error safe to assign
|
4607
4607
|
this._uniformTextures = {};
|
4608
|
-
// @ts-expect-error safe to assign
|
4609
|
-
this.uniformSemantics = {};
|
4610
4608
|
this.assignRenderer = throwDestroyedError;
|
4611
4609
|
this._isDestroyed = true;
|
4612
4610
|
};
|
@@ -4691,9 +4689,9 @@ var MarsMaterialDataBlock = /** @class */ (function () {
|
|
4691
4689
|
MarsMaterialDataBlock.prototype.clone = function (name) {
|
4692
4690
|
return new MarsMaterialDataBlock({
|
4693
4691
|
name: name,
|
4694
|
-
uniformValues:
|
4695
|
-
uniformTextures:
|
4696
|
-
uniformSemantics:
|
4692
|
+
uniformValues: this._uniformValues,
|
4693
|
+
uniformTextures: this._uniformTextures,
|
4694
|
+
uniformSemantics: this.uniformSemantics,
|
4697
4695
|
keepUboData: this._keepUboData,
|
4698
4696
|
}, this.renderer);
|
4699
4697
|
};
|
@@ -5823,7 +5821,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5823
5821
|
return MarsSharedGeometry;
|
5824
5822
|
}(MarsGeometry));
|
5825
5823
|
|
5826
|
-
consoleLog('version: ' + "0.1.64-beta.
|
5824
|
+
consoleLog('version: ' + "0.1.64-beta.4");
|
5827
5825
|
|
5828
5826
|
export { DestroyOptions, GPUBufferOptionsMemoryShared, MarsGeometry as Geometry, MarsInstancedMesh as InstancedMesh, MarsTextureFactory, MarsMaterial as Material, MarsMaterialDataBlock as MaterialDataBlock, MarsMesh as Mesh, MarsRenderFrame as RenderFrame, MarsRenderPass as RenderPass, RenderPassAttachmentStorageType, RenderPassDestroyAttachmentType, RenderPassMeshOrder, RenderPassPriorityNormal, RenderPassPriorityPostprocess, RenderPassPriorityPrepare, MarsRenderer as Renderer, ShaderCompileResultStatus, ShaderLibraryEmpty, MarsSharedGeometry as SharedGeometry, MarsTexture as Texture, TextureLoadAction, TextureSourceType, TextureStoreAction, constants, getDefaultGPUCapability, getDefaultTextureFactory, setDefaultTextureFactory };
|
5829
5827
|
//# sourceMappingURL=index.mjs.map
|