@rerun-io/web-viewer 0.13.0-rc.4 → 0.14.0-rc.3
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/README.md +1 -1
- package/index.d.ts +69 -0
- package/index.d.ts.map +10 -3
- package/package.json +16 -5
- package/re_viewer_bg.js +96 -92
- package/re_viewer_bg.wasm +0 -0
- package/re_viewer_bg.wasm.d.ts +11 -11
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ viewer.stop();
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
The `rrd` in the snippet above should be a URL pointing to either:
|
|
44
|
-
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.
|
|
44
|
+
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.14.0-rc.3/examples/dna.rrd>
|
|
45
45
|
- A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk-operating-modes#serve) API
|
|
46
46
|
|
|
47
47
|
If `rrd` is not set, the viewer will display the same welcome screen as <https://app.rerun.io>.
|
package/index.d.ts
CHANGED
|
@@ -37,4 +37,73 @@ declare module '@rerun-io/web-viewer' {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
declare module '@rerun-io/web-viewer/re_viewer.js' {
|
|
41
|
+
/* tslint:disable */
|
|
42
|
+
/* eslint-disable */
|
|
43
|
+
/**
|
|
44
|
+
* Used to set the "email" property in the analytics config,
|
|
45
|
+
* in the same way as `rerun analytics email YOURNAME@rerun.io`.
|
|
46
|
+
*
|
|
47
|
+
* This one just panics when it fails, as it's only ever really run
|
|
48
|
+
* by rerun employees manually in `app.rerun.io`.
|
|
49
|
+
* */
|
|
50
|
+
export function set_email(email: string): void;
|
|
51
|
+
|
|
52
|
+
export class IntoUnderlyingByteSource {
|
|
53
|
+
free(): void;
|
|
54
|
+
|
|
55
|
+
start(controller: ReadableByteStreamController): void;
|
|
56
|
+
|
|
57
|
+
pull(controller: ReadableByteStreamController): Promise<any>;
|
|
58
|
+
|
|
59
|
+
cancel(): void;
|
|
60
|
+
|
|
61
|
+
readonly autoAllocateChunkSize: number;
|
|
62
|
+
|
|
63
|
+
readonly type: string;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export class IntoUnderlyingSink {
|
|
67
|
+
free(): void;
|
|
68
|
+
|
|
69
|
+
write(chunk: any): Promise<any>;
|
|
70
|
+
|
|
71
|
+
close(): Promise<any>;
|
|
72
|
+
|
|
73
|
+
abort(reason: any): Promise<any>;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export class IntoUnderlyingSource {
|
|
77
|
+
free(): void;
|
|
78
|
+
|
|
79
|
+
pull(controller: ReadableStreamDefaultController): Promise<any>;
|
|
80
|
+
|
|
81
|
+
cancel(): void;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export class WebHandle {
|
|
85
|
+
free(): void;
|
|
86
|
+
|
|
87
|
+
constructor();
|
|
88
|
+
/**
|
|
89
|
+
* - `url` is an optional URL to either an .rrd file over http, or a Rerun WebSocket server.
|
|
90
|
+
* - `manifest_url` is an optional URL to an `examples_manifest.json` file over http.
|
|
91
|
+
* - `force_wgpu_backend` is an optional string to force a specific backend, either `webgl` or `webgpu`.
|
|
92
|
+
* */
|
|
93
|
+
start(canvas_id: string, url?: string, manifest_url?: string, force_wgpu_backend?: string): Promise<void>;
|
|
94
|
+
|
|
95
|
+
destroy(): void;
|
|
96
|
+
|
|
97
|
+
has_panicked(): boolean;
|
|
98
|
+
|
|
99
|
+
panic_message(): string | undefined;
|
|
100
|
+
|
|
101
|
+
panic_callstack(): string | undefined;
|
|
102
|
+
|
|
103
|
+
add_receiver(url: string): void;
|
|
104
|
+
|
|
105
|
+
remove_receiver(url: string): void;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
40
109
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -2,13 +2,20 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"file": "index.d.ts",
|
|
4
4
|
"names": [
|
|
5
|
-
"WebViewer"
|
|
5
|
+
"WebViewer",
|
|
6
|
+
"set_email",
|
|
7
|
+
"IntoUnderlyingByteSource",
|
|
8
|
+
"IntoUnderlyingSink",
|
|
9
|
+
"IntoUnderlyingSource",
|
|
10
|
+
"WebHandle"
|
|
6
11
|
],
|
|
7
12
|
"sources": [
|
|
8
|
-
"index.js"
|
|
13
|
+
"index.js",
|
|
14
|
+
"re_viewer.d.ts"
|
|
9
15
|
],
|
|
10
16
|
"sourcesContent": [
|
|
17
|
+
null,
|
|
11
18
|
null
|
|
12
19
|
],
|
|
13
|
-
"mappings": ";cAuBaA,SAASA"
|
|
20
|
+
"mappings": ";cAuBaA,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCbNC,SAASA;;eAGZC,wBAAwBA;;;;;;;;;;;;;;eAuBxBC,kBAAkBA;;;;;;;;;;eAmBlBC,oBAAoBA;;;;;;;;eAapBC,SAASA"
|
|
14
21
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rerun-io/web-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0-rc.3",
|
|
4
4
|
"description": "Embed the Rerun web viewer in your app",
|
|
5
|
-
"
|
|
5
|
+
"licenses": [
|
|
6
|
+
{
|
|
7
|
+
"type": "MIT"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"type": "Apache-2.0"
|
|
11
|
+
}
|
|
12
|
+
],
|
|
6
13
|
"scripts": {
|
|
7
14
|
"build:wasm": "cargo run -p re_build_web_viewer -- --release --module -o rerun_js/web-viewer",
|
|
8
15
|
"build:wasm:debug": "cargo run -p re_build_web_viewer -- --debug --module -o rerun_js/web-viewer",
|
|
9
|
-
"build:types": "dts-buddy",
|
|
10
|
-
"build": "npm run build:wasm && npm run build:types"
|
|
11
|
-
"prepublishOnly": "tsc --noEmit && dts-buddy"
|
|
16
|
+
"build:types": "tsc --noEmit && dts-buddy",
|
|
17
|
+
"build": "npm run build:wasm && npm run build:types"
|
|
12
18
|
},
|
|
13
19
|
"repository": {
|
|
14
20
|
"type": "git",
|
|
@@ -20,10 +26,15 @@
|
|
|
20
26
|
"url": "https://github.com/rerun-io/rerun/issues"
|
|
21
27
|
},
|
|
22
28
|
"homepage": "https://rerun.io",
|
|
29
|
+
"type": "module",
|
|
23
30
|
"exports": {
|
|
24
31
|
".": {
|
|
25
32
|
"types": "./index.d.ts",
|
|
26
33
|
"import": "./index.js"
|
|
34
|
+
},
|
|
35
|
+
"./re_viewer.js": {
|
|
36
|
+
"types": "./re_viewer.d.ts",
|
|
37
|
+
"import": "./re_viewer.js"
|
|
27
38
|
}
|
|
28
39
|
},
|
|
29
40
|
"files": [
|
package/re_viewer_bg.js
CHANGED
|
@@ -222,25 +222,21 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
222
222
|
return real;
|
|
223
223
|
}
|
|
224
224
|
function __wbg_adapter_32(arg0, arg1) {
|
|
225
|
-
wasm.
|
|
225
|
+
wasm.wasm_bindgen__convert__closures__invoke0_mut__h2ae45ecb67e8307e(arg0, arg1);
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
function __wbg_adapter_35(arg0, arg1) {
|
|
229
|
-
wasm.
|
|
229
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h46958959de1b1156(arg0, arg1);
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
function __wbg_adapter_38(arg0, arg1) {
|
|
233
|
-
wasm.
|
|
232
|
+
function __wbg_adapter_38(arg0, arg1, arg2) {
|
|
233
|
+
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he5caf0a63da9e355(arg0, arg1, addHeapObject(arg2));
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
function __wbg_adapter_41(arg0, arg1
|
|
237
|
-
wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1c57d1e9474fd02b(arg0, arg1, addHeapObject(arg2));
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
function __wbg_adapter_44(arg0, arg1) {
|
|
236
|
+
function __wbg_adapter_41(arg0, arg1) {
|
|
241
237
|
try {
|
|
242
238
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
243
|
-
wasm.
|
|
239
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h563e46f41cac8bb5(retptr, arg0, arg1);
|
|
244
240
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
245
241
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
246
242
|
if (r1) {
|
|
@@ -251,24 +247,28 @@ function __wbg_adapter_44(arg0, arg1) {
|
|
|
251
247
|
}
|
|
252
248
|
}
|
|
253
249
|
|
|
250
|
+
function __wbg_adapter_44(arg0, arg1) {
|
|
251
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7f77f9f2d0b80bb4(arg0, arg1);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
254
|
function __wbg_adapter_47(arg0, arg1, arg2) {
|
|
255
|
-
wasm.
|
|
255
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__h3cf42a2dd407b170(arg0, arg1, addHeapObject(arg2));
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
function __wbg_adapter_52(arg0, arg1, arg2) {
|
|
259
|
-
wasm.
|
|
259
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__hac74d77a71213ff6(arg0, arg1, addHeapObject(arg2));
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
function __wbg_adapter_61(arg0, arg1, arg2) {
|
|
263
|
-
wasm.
|
|
263
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__h4fdb2d52c5546e7c(arg0, arg1, addHeapObject(arg2));
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
function __wbg_adapter_64(arg0, arg1, arg2) {
|
|
267
|
-
wasm.
|
|
267
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__hbcb665b093f6c4f0(arg0, arg1, addHeapObject(arg2));
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
function __wbg_adapter_67(arg0, arg1, arg2) {
|
|
271
|
-
wasm.
|
|
271
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__h156b5c97f2d9e5f9(arg0, arg1, addHeapObject(arg2));
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
/**
|
|
@@ -325,8 +325,8 @@ function getArrayF32FromWasm0(ptr, len) {
|
|
|
325
325
|
ptr = ptr >>> 0;
|
|
326
326
|
return getFloat32Memory0().subarray(ptr / 4, ptr / 4 + len);
|
|
327
327
|
}
|
|
328
|
-
function
|
|
329
|
-
wasm.
|
|
328
|
+
function __wbg_adapter_1291(arg0, arg1, arg2, arg3) {
|
|
329
|
+
wasm.wasm_bindgen__convert__closures__invoke2_mut__h65eec356cd8cd669(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
/**
|
|
@@ -574,16 +574,6 @@ export class WebHandle {
|
|
|
574
574
|
}
|
|
575
575
|
}
|
|
576
576
|
|
|
577
|
-
export function __wbindgen_cb_drop(arg0) {
|
|
578
|
-
const obj = takeObject(arg0).original;
|
|
579
|
-
if (obj.cnt-- == 1) {
|
|
580
|
-
obj.a = 0;
|
|
581
|
-
return true;
|
|
582
|
-
}
|
|
583
|
-
const ret = false;
|
|
584
|
-
return ret;
|
|
585
|
-
};
|
|
586
|
-
|
|
587
577
|
export function __wbindgen_object_drop_ref(arg0) {
|
|
588
578
|
takeObject(arg0);
|
|
589
579
|
};
|
|
@@ -598,6 +588,16 @@ export function __wbindgen_string_new(arg0, arg1) {
|
|
|
598
588
|
return addHeapObject(ret);
|
|
599
589
|
};
|
|
600
590
|
|
|
591
|
+
export function __wbindgen_cb_drop(arg0) {
|
|
592
|
+
const obj = takeObject(arg0).original;
|
|
593
|
+
if (obj.cnt-- == 1) {
|
|
594
|
+
obj.a = 0;
|
|
595
|
+
return true;
|
|
596
|
+
}
|
|
597
|
+
const ret = false;
|
|
598
|
+
return ret;
|
|
599
|
+
};
|
|
600
|
+
|
|
601
601
|
export function __wbindgen_string_get(arg0, arg1) {
|
|
602
602
|
const obj = getObject(arg1);
|
|
603
603
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
@@ -607,14 +607,7 @@ export function __wbindgen_string_get(arg0, arg1) {
|
|
|
607
607
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
608
608
|
};
|
|
609
609
|
|
|
610
|
-
export function
|
|
611
|
-
const obj = getObject(arg1);
|
|
612
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
613
|
-
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
614
|
-
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
615
|
-
};
|
|
616
|
-
|
|
617
|
-
export function __wbg_error_fef71bc9b670aec4(arg0, arg1) {
|
|
610
|
+
export function __wbg_error_ca2474234fef2329(arg0, arg1) {
|
|
618
611
|
let deferred0_0;
|
|
619
612
|
let deferred0_1;
|
|
620
613
|
try {
|
|
@@ -626,12 +619,12 @@ export function __wbg_error_fef71bc9b670aec4(arg0, arg1) {
|
|
|
626
619
|
}
|
|
627
620
|
};
|
|
628
621
|
|
|
629
|
-
export function
|
|
622
|
+
export function __wbg_new_ad8b60ed55d95a64() {
|
|
630
623
|
const ret = new Error();
|
|
631
624
|
return addHeapObject(ret);
|
|
632
625
|
};
|
|
633
626
|
|
|
634
|
-
export function
|
|
627
|
+
export function __wbg_stack_1c80e3b436be887a(arg0, arg1) {
|
|
635
628
|
const ret = getObject(arg1).stack;
|
|
636
629
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
637
630
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -639,12 +632,19 @@ export function __wbg_stack_1c1cef4675b9e0ca(arg0, arg1) {
|
|
|
639
632
|
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
640
633
|
};
|
|
641
634
|
|
|
642
|
-
export function
|
|
635
|
+
export function __wbindgen_number_get(arg0, arg1) {
|
|
636
|
+
const obj = getObject(arg1);
|
|
637
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
638
|
+
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
639
|
+
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
640
|
+
};
|
|
641
|
+
|
|
642
|
+
export function __wbg_new_8b02a5c97c6e8c73() {
|
|
643
643
|
const ret = new Error();
|
|
644
644
|
return addHeapObject(ret);
|
|
645
645
|
};
|
|
646
646
|
|
|
647
|
-
export function
|
|
647
|
+
export function __wbg_stack_acbac27fbb046f12(arg0, arg1) {
|
|
648
648
|
const ret = getObject(arg1).stack;
|
|
649
649
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
650
650
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -1780,6 +1780,10 @@ export function __wbg_setItem_2b72ddf192083111() { return handleError(function (
|
|
|
1780
1780
|
getObject(arg0).setItem(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1781
1781
|
}, arguments) };
|
|
1782
1782
|
|
|
1783
|
+
export function __wbg_delete_0fda29538c87fd1e() { return handleError(function (arg0, arg1, arg2) {
|
|
1784
|
+
delete getObject(arg0)[getStringFromWasm0(arg1, arg2)];
|
|
1785
|
+
}, arguments) };
|
|
1786
|
+
|
|
1783
1787
|
export function __wbg_instanceof_Blob_2c181202f4fb7894(arg0) {
|
|
1784
1788
|
let result;
|
|
1785
1789
|
try {
|
|
@@ -2284,6 +2288,26 @@ export function __wbg_unmap_950f4eeb07607956(arg0) {
|
|
|
2284
2288
|
getObject(arg0).unmap();
|
|
2285
2289
|
};
|
|
2286
2290
|
|
|
2291
|
+
export function __wbg_instanceof_GpuCanvasContext_15a09368cfe47ea8(arg0) {
|
|
2292
|
+
let result;
|
|
2293
|
+
try {
|
|
2294
|
+
result = getObject(arg0) instanceof GPUCanvasContext;
|
|
2295
|
+
} catch (_) {
|
|
2296
|
+
result = false;
|
|
2297
|
+
}
|
|
2298
|
+
const ret = result;
|
|
2299
|
+
return ret;
|
|
2300
|
+
};
|
|
2301
|
+
|
|
2302
|
+
export function __wbg_configure_e226c3745a43426f(arg0, arg1) {
|
|
2303
|
+
getObject(arg0).configure(getObject(arg1));
|
|
2304
|
+
};
|
|
2305
|
+
|
|
2306
|
+
export function __wbg_getCurrentTexture_c18952d00d5ca291(arg0) {
|
|
2307
|
+
const ret = getObject(arg0).getCurrentTexture();
|
|
2308
|
+
return addHeapObject(ret);
|
|
2309
|
+
};
|
|
2310
|
+
|
|
2287
2311
|
export function __wbg_createView_238c196d0cfdd954(arg0, arg1) {
|
|
2288
2312
|
const ret = getObject(arg0).createView(getObject(arg1));
|
|
2289
2313
|
return addHeapObject(ret);
|
|
@@ -2983,26 +3007,6 @@ export function __wbg_get_f2ba4265e9e1e12b(arg0, arg1) {
|
|
|
2983
3007
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
2984
3008
|
};
|
|
2985
3009
|
|
|
2986
|
-
export function __wbg_instanceof_GpuCanvasContext_15a09368cfe47ea8(arg0) {
|
|
2987
|
-
let result;
|
|
2988
|
-
try {
|
|
2989
|
-
result = getObject(arg0) instanceof GPUCanvasContext;
|
|
2990
|
-
} catch (_) {
|
|
2991
|
-
result = false;
|
|
2992
|
-
}
|
|
2993
|
-
const ret = result;
|
|
2994
|
-
return ret;
|
|
2995
|
-
};
|
|
2996
|
-
|
|
2997
|
-
export function __wbg_configure_e226c3745a43426f(arg0, arg1) {
|
|
2998
|
-
getObject(arg0).configure(getObject(arg1));
|
|
2999
|
-
};
|
|
3000
|
-
|
|
3001
|
-
export function __wbg_getCurrentTexture_c18952d00d5ca291(arg0) {
|
|
3002
|
-
const ret = getObject(arg0).getCurrentTexture();
|
|
3003
|
-
return addHeapObject(ret);
|
|
3004
|
-
};
|
|
3005
|
-
|
|
3006
3010
|
export function __wbg_getBindGroupLayout_4493a09dd3332cc7(arg0, arg1) {
|
|
3007
3011
|
const ret = getObject(arg0).getBindGroupLayout(arg1 >>> 0);
|
|
3008
3012
|
return addHeapObject(ret);
|
|
@@ -3339,19 +3343,19 @@ export function __wbg_error_1f4e3e298a7c97f6(arg0) {
|
|
|
3339
3343
|
console.error(getObject(arg0));
|
|
3340
3344
|
};
|
|
3341
3345
|
|
|
3342
|
-
export function
|
|
3346
|
+
export function __wbg_warn_848682639b19a23d(arg0, arg1) {
|
|
3343
3347
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
3344
3348
|
};
|
|
3345
3349
|
|
|
3346
|
-
export function
|
|
3350
|
+
export function __wbg_info_642ebd59eaeaacd2(arg0, arg1) {
|
|
3347
3351
|
console.info(getStringFromWasm0(arg0, arg1));
|
|
3348
3352
|
};
|
|
3349
3353
|
|
|
3350
|
-
export function
|
|
3354
|
+
export function __wbg_debug_6b4214182ace2589(arg0, arg1) {
|
|
3351
3355
|
console.debug(getStringFromWasm0(arg0, arg1));
|
|
3352
3356
|
};
|
|
3353
3357
|
|
|
3354
|
-
export function
|
|
3358
|
+
export function __wbg_trace_a2874086fca542a9(arg0, arg1) {
|
|
3355
3359
|
console.trace(getStringFromWasm0(arg0, arg1));
|
|
3356
3360
|
};
|
|
3357
3361
|
|
|
@@ -3583,7 +3587,7 @@ export function __wbg_new_1d93771b84541aa5(arg0, arg1) {
|
|
|
3583
3587
|
const a = state0.a;
|
|
3584
3588
|
state0.a = 0;
|
|
3585
3589
|
try {
|
|
3586
|
-
return
|
|
3590
|
+
return __wbg_adapter_1291(a, state0.b, arg0, arg1);
|
|
3587
3591
|
} finally {
|
|
3588
3592
|
state0.a = a;
|
|
3589
3593
|
}
|
|
@@ -3716,73 +3720,73 @@ export function __wbindgen_memory() {
|
|
|
3716
3720
|
return addHeapObject(ret);
|
|
3717
3721
|
};
|
|
3718
3722
|
|
|
3719
|
-
export function
|
|
3720
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3723
|
+
export function __wbindgen_closure_wrapper2320(arg0, arg1, arg2) {
|
|
3724
|
+
const ret = makeMutClosure(arg0, arg1, 582, __wbg_adapter_32);
|
|
3721
3725
|
return addHeapObject(ret);
|
|
3722
3726
|
};
|
|
3723
3727
|
|
|
3724
|
-
export function
|
|
3725
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3728
|
+
export function __wbindgen_closure_wrapper3099(arg0, arg1, arg2) {
|
|
3729
|
+
const ret = makeMutClosure(arg0, arg1, 853, __wbg_adapter_35);
|
|
3726
3730
|
return addHeapObject(ret);
|
|
3727
3731
|
};
|
|
3728
3732
|
|
|
3729
|
-
export function
|
|
3730
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3733
|
+
export function __wbindgen_closure_wrapper7168(arg0, arg1, arg2) {
|
|
3734
|
+
const ret = makeMutClosure(arg0, arg1, 2230, __wbg_adapter_38);
|
|
3731
3735
|
return addHeapObject(ret);
|
|
3732
3736
|
};
|
|
3733
3737
|
|
|
3734
|
-
export function
|
|
3735
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3738
|
+
export function __wbindgen_closure_wrapper7170(arg0, arg1, arg2) {
|
|
3739
|
+
const ret = makeMutClosure(arg0, arg1, 2230, __wbg_adapter_41);
|
|
3736
3740
|
return addHeapObject(ret);
|
|
3737
3741
|
};
|
|
3738
3742
|
|
|
3739
|
-
export function
|
|
3740
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3743
|
+
export function __wbindgen_closure_wrapper7172(arg0, arg1, arg2) {
|
|
3744
|
+
const ret = makeMutClosure(arg0, arg1, 2230, __wbg_adapter_44);
|
|
3741
3745
|
return addHeapObject(ret);
|
|
3742
3746
|
};
|
|
3743
3747
|
|
|
3744
|
-
export function
|
|
3745
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3748
|
+
export function __wbindgen_closure_wrapper15310(arg0, arg1, arg2) {
|
|
3749
|
+
const ret = makeMutClosure(arg0, arg1, 5346, __wbg_adapter_47);
|
|
3746
3750
|
return addHeapObject(ret);
|
|
3747
3751
|
};
|
|
3748
3752
|
|
|
3749
|
-
export function
|
|
3750
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3753
|
+
export function __wbindgen_closure_wrapper15312(arg0, arg1, arg2) {
|
|
3754
|
+
const ret = makeMutClosure(arg0, arg1, 5346, __wbg_adapter_47);
|
|
3751
3755
|
return addHeapObject(ret);
|
|
3752
3756
|
};
|
|
3753
3757
|
|
|
3754
|
-
export function
|
|
3755
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3758
|
+
export function __wbindgen_closure_wrapper21849(arg0, arg1, arg2) {
|
|
3759
|
+
const ret = makeMutClosure(arg0, arg1, 7938, __wbg_adapter_52);
|
|
3756
3760
|
return addHeapObject(ret);
|
|
3757
3761
|
};
|
|
3758
3762
|
|
|
3759
|
-
export function
|
|
3760
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3763
|
+
export function __wbindgen_closure_wrapper21851(arg0, arg1, arg2) {
|
|
3764
|
+
const ret = makeMutClosure(arg0, arg1, 7938, __wbg_adapter_52);
|
|
3761
3765
|
return addHeapObject(ret);
|
|
3762
3766
|
};
|
|
3763
3767
|
|
|
3764
|
-
export function
|
|
3765
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3768
|
+
export function __wbindgen_closure_wrapper21853(arg0, arg1, arg2) {
|
|
3769
|
+
const ret = makeMutClosure(arg0, arg1, 7938, __wbg_adapter_52);
|
|
3766
3770
|
return addHeapObject(ret);
|
|
3767
3771
|
};
|
|
3768
3772
|
|
|
3769
|
-
export function
|
|
3770
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3773
|
+
export function __wbindgen_closure_wrapper21855(arg0, arg1, arg2) {
|
|
3774
|
+
const ret = makeMutClosure(arg0, arg1, 7938, __wbg_adapter_52);
|
|
3771
3775
|
return addHeapObject(ret);
|
|
3772
3776
|
};
|
|
3773
3777
|
|
|
3774
|
-
export function
|
|
3775
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3778
|
+
export function __wbindgen_closure_wrapper26563(arg0, arg1, arg2) {
|
|
3779
|
+
const ret = makeMutClosure(arg0, arg1, 9561, __wbg_adapter_61);
|
|
3776
3780
|
return addHeapObject(ret);
|
|
3777
3781
|
};
|
|
3778
3782
|
|
|
3779
|
-
export function
|
|
3780
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3783
|
+
export function __wbindgen_closure_wrapper27559(arg0, arg1, arg2) {
|
|
3784
|
+
const ret = makeMutClosure(arg0, arg1, 10177, __wbg_adapter_64);
|
|
3781
3785
|
return addHeapObject(ret);
|
|
3782
3786
|
};
|
|
3783
3787
|
|
|
3784
|
-
export function
|
|
3785
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3788
|
+
export function __wbindgen_closure_wrapper27596(arg0, arg1, arg2) {
|
|
3789
|
+
const ret = makeMutClosure(arg0, arg1, 10183, __wbg_adapter_67);
|
|
3786
3790
|
return addHeapObject(ret);
|
|
3787
3791
|
};
|
|
3788
3792
|
|
package/re_viewer_bg.wasm
CHANGED
|
Binary file
|
package/re_viewer_bg.wasm.d.ts
CHANGED
|
@@ -76,17 +76,17 @@ export function intounderlyingsink_abort(a: number, b: number): number;
|
|
|
76
76
|
export function __wbindgen_malloc(a: number, b: number): number;
|
|
77
77
|
export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
|
|
78
78
|
export const __wbindgen_export_2: WebAssembly.Table;
|
|
79
|
-
export function
|
|
80
|
-
export function
|
|
81
|
-
export function
|
|
82
|
-
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1c57d1e9474fd02b(a: number, b: number, c: number): void;
|
|
79
|
+
export function wasm_bindgen__convert__closures__invoke0_mut__h2ae45ecb67e8307e(a: number, b: number): void;
|
|
80
|
+
export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h46958959de1b1156(a: number, b: number): void;
|
|
81
|
+
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he5caf0a63da9e355(a: number, b: number, c: number): void;
|
|
83
82
|
export function __wbindgen_add_to_stack_pointer(a: number): number;
|
|
84
|
-
export function
|
|
85
|
-
export function
|
|
86
|
-
export function
|
|
87
|
-
export function
|
|
88
|
-
export function
|
|
89
|
-
export function
|
|
83
|
+
export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h563e46f41cac8bb5(a: number, b: number, c: number): void;
|
|
84
|
+
export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7f77f9f2d0b80bb4(a: number, b: number): void;
|
|
85
|
+
export function wasm_bindgen__convert__closures__invoke1_mut__h3cf42a2dd407b170(a: number, b: number, c: number): void;
|
|
86
|
+
export function wasm_bindgen__convert__closures__invoke1_mut__hac74d77a71213ff6(a: number, b: number, c: number): void;
|
|
87
|
+
export function wasm_bindgen__convert__closures__invoke1_mut__h4fdb2d52c5546e7c(a: number, b: number, c: number): void;
|
|
88
|
+
export function wasm_bindgen__convert__closures__invoke1_mut__hbcb665b093f6c4f0(a: number, b: number, c: number): void;
|
|
89
|
+
export function wasm_bindgen__convert__closures__invoke1_mut__h156b5c97f2d9e5f9(a: number, b: number, c: number): void;
|
|
90
90
|
export function __wbindgen_free(a: number, b: number, c: number): void;
|
|
91
91
|
export function __wbindgen_exn_store(a: number): void;
|
|
92
|
-
export function
|
|
92
|
+
export function wasm_bindgen__convert__closures__invoke2_mut__h65eec356cd8cd669(a: number, b: number, c: number, d: number): void;
|