@predy-js/render-interface 0.1.65-beta.5 → 0.1.65-beta.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.
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/dist/statistic.js +1 -1
- package/dist/types/native/PredyNativeInternal.d.ts +2 -1
- package/dist/types/native/RendererInternal.d.ts +2 -1
- package/dist/types/native/TextureInternal.d.ts +0 -2
- package/package.json +1 -1
- package/types/native/PredyNativeInternal.ts +2 -1
- package/types/native/RendererInternal.ts +2 -1
- package/types/native/TextureInternal.ts +0 -3
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.65-beta.
|
5
|
+
* Version: v0.1.65-beta.6
|
6
6
|
*/
|
7
7
|
|
8
8
|
/******************************************************************************
|
@@ -3915,15 +3915,12 @@ var MarsTexture = /** @class */ (function () {
|
|
3915
3915
|
}, options);
|
3916
3916
|
if (!opt.sourceType) {
|
3917
3917
|
if (opt.image) {
|
3918
|
-
// @ts-expect-error
|
3919
3918
|
opt.sourceType = TextureSourceType.image;
|
3920
3919
|
}
|
3921
3920
|
else if (opt.data) {
|
3922
|
-
// @ts-expect-error
|
3923
3921
|
opt.sourceType = TextureSourceType.data;
|
3924
3922
|
}
|
3925
3923
|
else if (opt.video) {
|
3926
|
-
// @ts-expect-error
|
3927
3924
|
opt.sourceType = TextureSourceType.video;
|
3928
3925
|
}
|
3929
3926
|
else {
|
@@ -5829,7 +5826,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5829
5826
|
return MarsSharedGeometry;
|
5830
5827
|
}(MarsGeometry));
|
5831
5828
|
|
5832
|
-
consoleLog('version: ' + "0.1.65-beta.
|
5829
|
+
consoleLog('version: ' + "0.1.65-beta.6");
|
5833
5830
|
|
5834
5831
|
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 };
|
5835
5832
|
//# sourceMappingURL=index.mjs.map
|