@predy-js/render-interface 0.3.2 → 0.3.3-beta.10
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 +19 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -2
- package/dist/index.mjs.map +1 -1
- package/dist/statistic.js +1 -1
- package/dist/types/native/PredyNativeInternal.d.ts +25 -3
- package/dist/types/native/TextureInternal.d.ts +1 -0
- package/dist/types/native/VideoDecoder.d.ts +78 -0
- package/dist/types/native/index.d.ts +1 -0
- package/package.json +1 -1
- package/types/native/PredyNativeInternal.ts +30 -3
- package/types/native/TextureInternal.ts +2 -0
- package/types/native/VideoDecoder.ts +89 -0
- package/types/native/index.ts +1 -0
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.
|
5
|
+
* Version: v0.3.3-beta.10
|
6
6
|
*/
|
7
7
|
|
8
8
|
'use strict';
|
@@ -3160,6 +3160,23 @@ var PredyTextEncoding;
|
|
3160
3160
|
PredyTextEncoding[PredyTextEncoding["utf8"] = 0] = "utf8";
|
3161
3161
|
PredyTextEncoding[PredyTextEncoding["ascii"] = 1] = "ascii";
|
3162
3162
|
})(PredyTextEncoding || (PredyTextEncoding = {}));
|
3163
|
+
var PredyVideoCodec;
|
3164
|
+
(function (PredyVideoCodec) {
|
3165
|
+
PredyVideoCodec["h264"] = "avc1";
|
3166
|
+
PredyVideoCodec["h265"] = "hev1";
|
3167
|
+
PredyVideoCodec["av1"] = "av1";
|
3168
|
+
})(PredyVideoCodec || (PredyVideoCodec = {}));
|
3169
|
+
|
3170
|
+
var PredyVideoDecoderStatus;
|
3171
|
+
(function (PredyVideoDecoderStatus) {
|
3172
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["init"] = 0] = "init";
|
3173
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["loading"] = 1] = "loading";
|
3174
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["metadataReady"] = 2] = "metadataReady";
|
3175
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["seekingFrame"] = 3] = "seekingFrame";
|
3176
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["frameReady"] = 4] = "frameReady";
|
3177
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["destroyed"] = 5] = "destroyed";
|
3178
|
+
PredyVideoDecoderStatus[PredyVideoDecoderStatus["error"] = 44] = "error";
|
3179
|
+
})(PredyVideoDecoderStatus || (PredyVideoDecoderStatus = {}));
|
3163
3180
|
|
3164
3181
|
var GLRenderBuffer = /** @class */ (function () {
|
3165
3182
|
function GLRenderBuffer(renderer, options) {
|
@@ -5897,7 +5914,7 @@ var MarsSharedGeometry = /** @class */ (function (_super) {
|
|
5897
5914
|
return MarsSharedGeometry;
|
5898
5915
|
}(MarsGeometry));
|
5899
5916
|
|
5900
|
-
consoleLog('version: ' + "0.3.
|
5917
|
+
consoleLog('version: ' + "0.3.3-beta.10");
|
5901
5918
|
var ModuleMsg = 'RI Package: @predy-js/render-interface';
|
5902
5919
|
|
5903
5920
|
var RI = /*#__PURE__*/Object.freeze({
|