@dcl-regenesislabs/bevy-explorer-web 0.1.0-20854835408.commit-8fb9107 → 0.1.0-20955328934.commit-c247f6b
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/.env +1 -1
- package/gpu_cache.js +26 -0
- package/index.html +5 -2
- package/main.js +4 -3
- package/package.json +3 -3
- package/pkg/webgpu_build.d.ts +8 -8
- package/pkg/webgpu_build.js +60 -52
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +8 -8
- package/shader_compiling_transparent2.png +0 -0
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
1
|
+
PUBLIC_URL="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-20955328934.commit-c247f6b"
|
package/gpu_cache.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
var count = 0;
|
|
2
|
+
|
|
1
3
|
function simpleHash(s) {
|
|
2
4
|
var h = 0x811c9dc5;
|
|
3
5
|
|
|
@@ -166,6 +168,9 @@ function patchWebgpuAdater() {
|
|
|
166
168
|
|
|
167
169
|
function wrapDeviceFunction(itemType, originalFunction) {
|
|
168
170
|
return (...args) => {
|
|
171
|
+
if (count == 0 && !precaching) {
|
|
172
|
+
console.error(`itemType: ${itemType}`)
|
|
173
|
+
}
|
|
169
174
|
const jsonArgs = JSON.stringify(args);
|
|
170
175
|
const hash = simpleHash(jsonArgs);
|
|
171
176
|
const cachedItem = gpuSessionState[itemType].get(hash);
|
|
@@ -313,3 +318,24 @@ function rehydrateItem(currentObject) {
|
|
|
313
318
|
}
|
|
314
319
|
}
|
|
315
320
|
}
|
|
321
|
+
|
|
322
|
+
window.shaderCompilerWait = async () => {
|
|
323
|
+
count += 1;
|
|
324
|
+
document.getElementById("shader-compiling").style.display = "flex";
|
|
325
|
+
await new Promise(resolve => {
|
|
326
|
+
setTimeout(resolve, 0);
|
|
327
|
+
});
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
window.shaderCompilerDone = async () => {
|
|
331
|
+
setTimeout(() => {
|
|
332
|
+
count -= 1;
|
|
333
|
+
if (count == 0) {
|
|
334
|
+
document.getElementById("shader-compiling").style.display = "none";
|
|
335
|
+
}
|
|
336
|
+
}, 500);
|
|
337
|
+
await new Promise(resolve => {
|
|
338
|
+
setTimeout(resolve, 0);
|
|
339
|
+
});
|
|
340
|
+
}
|
|
341
|
+
|
package/index.html
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
}
|
|
102
102
|
</style>
|
|
103
103
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
104
|
-
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
104
|
+
<script>window.PUBLIC_URL = "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-20955328934.commit-c247f6b";</script>
|
|
105
105
|
</head>
|
|
106
106
|
<body>
|
|
107
107
|
<div id="header" class="container">
|
|
@@ -133,8 +133,11 @@
|
|
|
133
133
|
<div id="canvas-parent">
|
|
134
134
|
<canvas id="mygame-canvas"></canvas>
|
|
135
135
|
</div>
|
|
136
|
+
<div id="shader-compiling" style="position: absolute; height:30%; aspect-ratio: 1; background: radial-gradient(circle closest-side, #000000aa, #00000000); align-items: center; justify-content: center; display: none;">
|
|
137
|
+
<image src="shader_compiling_transparent2.png" style="width: 100%;"/>
|
|
138
|
+
</div>
|
|
136
139
|
<script src="https://cdn.jsdelivr.net/npm/livekit-client/dist/livekit-client.umd.min.js"></script>
|
|
137
140
|
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
|
|
138
|
-
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
141
|
+
<script type="module" src="https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-20955328934.commit-c247f6b/main.js"></script>
|
|
139
142
|
</body>
|
|
140
143
|
</html>
|
package/main.js
CHANGED
|
@@ -341,16 +341,17 @@ window.set_url_params = (x, y, server, system_scene, preview) => {
|
|
|
341
341
|
} else {
|
|
342
342
|
urlParams.delete("systemScene");
|
|
343
343
|
}
|
|
344
|
-
|
|
344
|
+
|
|
345
345
|
if (preview) {
|
|
346
346
|
urlParams.set("preview", true);
|
|
347
347
|
} else {
|
|
348
348
|
urlParams.delete("preview");
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
const newPath = window.location.pathname + '?' + urlParams.toString();
|
|
351
|
+
const newPath = window.location.pathname + '?' + urlParams.toString();
|
|
352
352
|
history.replaceState(null, '', newPath);
|
|
353
353
|
} catch (e) {
|
|
354
354
|
console.log(`set url params failed: ${e}`);
|
|
355
355
|
}
|
|
356
|
-
}
|
|
356
|
+
}
|
|
357
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl-regenesislabs/bevy-explorer-web",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-20955328934.commit-c247f6b",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node ./scripts/prebuild.js"
|
|
6
6
|
},
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/decentraland/bevy-explorer.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-
|
|
12
|
-
"commit": "
|
|
11
|
+
"homepage": "https://cdn.decentraland.org/@dcl-regenesislabs/bevy-explorer-web/0.1.0-20955328934.commit-c247f6b",
|
|
12
|
+
"commit": "c247f6bf347ff202045a61226d9a01cf7e4a50cf"
|
|
13
13
|
}
|
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -214,19 +214,19 @@ export interface InitOutput {
|
|
|
214
214
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
215
215
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
216
216
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
217
|
+
readonly closure15335_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
218
|
+
readonly closure48579_externref_shim: (a: number, b: number, c: any) => void;
|
|
219
219
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
220
220
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______14: (a: number, b: number) => void;
|
|
221
|
-
readonly
|
|
221
|
+
readonly closure52233_externref_shim: (a: number, b: number, c: any) => void;
|
|
222
222
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______16: (a: number, b: number) => void;
|
|
223
223
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
224
|
-
readonly
|
|
225
|
-
readonly
|
|
224
|
+
readonly closure57290_externref_shim: (a: number, b: number, c: any) => void;
|
|
225
|
+
readonly closure57294_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
226
226
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______20: (a: number, b: number) => void;
|
|
227
|
-
readonly
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
227
|
+
readonly closure116818_externref_shim: (a: number, b: number, c: any) => void;
|
|
228
|
+
readonly closure131846_externref_shim: (a: number, b: number, c: any) => void;
|
|
229
|
+
readonly closure134742_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
230
230
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
231
231
|
readonly __wbindgen_start: (a: number) => void;
|
|
232
232
|
}
|
package/pkg/webgpu_build.js
CHANGED
|
@@ -1366,11 +1366,11 @@ export function gpu_cache_hash() {
|
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
1368
|
function __wbg_adapter_62(arg0, arg1, arg2, arg3) {
|
|
1369
|
-
wasm.
|
|
1369
|
+
wasm.closure15335_externref_shim(arg0, arg1, arg2, arg3);
|
|
1370
1370
|
}
|
|
1371
1371
|
|
|
1372
1372
|
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
1373
|
-
wasm.
|
|
1373
|
+
wasm.closure48579_externref_shim(arg0, arg1, arg2);
|
|
1374
1374
|
}
|
|
1375
1375
|
|
|
1376
1376
|
function __wbg_adapter_68(arg0, arg1) {
|
|
@@ -1382,7 +1382,7 @@ function __wbg_adapter_71(arg0, arg1) {
|
|
|
1382
1382
|
}
|
|
1383
1383
|
|
|
1384
1384
|
function __wbg_adapter_74(arg0, arg1, arg2) {
|
|
1385
|
-
wasm.
|
|
1385
|
+
wasm.closure52233_externref_shim(arg0, arg1, arg2);
|
|
1386
1386
|
}
|
|
1387
1387
|
|
|
1388
1388
|
function __wbg_adapter_81(arg0, arg1) {
|
|
@@ -1394,11 +1394,11 @@ function __wbg_adapter_84(arg0, arg1) {
|
|
|
1394
1394
|
}
|
|
1395
1395
|
|
|
1396
1396
|
function __wbg_adapter_87(arg0, arg1, arg2) {
|
|
1397
|
-
wasm.
|
|
1397
|
+
wasm.closure57290_externref_shim(arg0, arg1, arg2);
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
1400
|
function __wbg_adapter_90(arg0, arg1, arg2, arg3) {
|
|
1401
|
-
wasm.
|
|
1401
|
+
wasm.closure57294_externref_shim(arg0, arg1, arg2, arg3);
|
|
1402
1402
|
}
|
|
1403
1403
|
|
|
1404
1404
|
function __wbg_adapter_105(arg0, arg1) {
|
|
@@ -1406,15 +1406,15 @@ function __wbg_adapter_105(arg0, arg1) {
|
|
|
1406
1406
|
}
|
|
1407
1407
|
|
|
1408
1408
|
function __wbg_adapter_108(arg0, arg1, arg2) {
|
|
1409
|
-
wasm.
|
|
1409
|
+
wasm.closure116818_externref_shim(arg0, arg1, arg2);
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
1412
|
function __wbg_adapter_111(arg0, arg1, arg2) {
|
|
1413
|
-
wasm.
|
|
1413
|
+
wasm.closure131846_externref_shim(arg0, arg1, arg2);
|
|
1414
1414
|
}
|
|
1415
1415
|
|
|
1416
|
-
function
|
|
1417
|
-
wasm.
|
|
1416
|
+
function __wbg_adapter_1528(arg0, arg1, arg2, arg3) {
|
|
1417
|
+
wasm.closure134742_externref_shim(arg0, arg1, arg2, arg3);
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
1420
|
const __wbindgen_enum_BinaryType = ["blob", "arraybuffer"];
|
|
@@ -2735,7 +2735,7 @@ function __wbg_get_imports() {
|
|
|
2735
2735
|
const a = state0.a;
|
|
2736
2736
|
state0.a = 0;
|
|
2737
2737
|
try {
|
|
2738
|
-
return
|
|
2738
|
+
return __wbg_adapter_1528(a, state0.b, arg0, arg1);
|
|
2739
2739
|
} finally {
|
|
2740
2740
|
state0.a = a;
|
|
2741
2741
|
}
|
|
@@ -3970,6 +3970,14 @@ function __wbg_get_imports() {
|
|
|
3970
3970
|
imports.wbg.__wbg_setz_5389d800d9ef03b4 = function(arg0, arg1) {
|
|
3971
3971
|
arg0.z = arg1 >>> 0;
|
|
3972
3972
|
};
|
|
3973
|
+
imports.wbg.__wbg_shaderCompilerDone_78f162d4848e1b54 = function() {
|
|
3974
|
+
const ret = window.shaderCompilerDone();
|
|
3975
|
+
return ret;
|
|
3976
|
+
};
|
|
3977
|
+
imports.wbg.__wbg_shaderCompilerWait_f6e57a7a3b8eee5b = function() {
|
|
3978
|
+
const ret = window.shaderCompilerWait();
|
|
3979
|
+
return ret;
|
|
3980
|
+
};
|
|
3973
3981
|
imports.wbg.__wbg_shiftKey_2bebb3b703254f47 = function(arg0) {
|
|
3974
3982
|
const ret = arg0.shiftKey;
|
|
3975
3983
|
return ret;
|
|
@@ -4305,88 +4313,88 @@ function __wbg_get_imports() {
|
|
|
4305
4313
|
const ret = false;
|
|
4306
4314
|
return ret;
|
|
4307
4315
|
};
|
|
4308
|
-
imports.wbg.
|
|
4309
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4316
|
+
imports.wbg.__wbindgen_closure_wrapper148005 = function(arg0, arg1, arg2) {
|
|
4317
|
+
const ret = makeMutClosure(arg0, arg1, 116819, __wbg_adapter_108);
|
|
4310
4318
|
return ret;
|
|
4311
4319
|
};
|
|
4312
|
-
imports.wbg.
|
|
4313
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4320
|
+
imports.wbg.__wbindgen_closure_wrapper168562 = function(arg0, arg1, arg2) {
|
|
4321
|
+
const ret = makeMutClosure(arg0, arg1, 131847, __wbg_adapter_111);
|
|
4314
4322
|
return ret;
|
|
4315
4323
|
};
|
|
4316
|
-
imports.wbg.
|
|
4317
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4324
|
+
imports.wbg.__wbindgen_closure_wrapper168564 = function(arg0, arg1, arg2) {
|
|
4325
|
+
const ret = makeMutClosure(arg0, arg1, 131847, __wbg_adapter_111);
|
|
4318
4326
|
return ret;
|
|
4319
4327
|
};
|
|
4320
|
-
imports.wbg.
|
|
4321
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4328
|
+
imports.wbg.__wbindgen_closure_wrapper19724 = function(arg0, arg1, arg2) {
|
|
4329
|
+
const ret = makeMutClosure(arg0, arg1, 15336, __wbg_adapter_62);
|
|
4322
4330
|
return ret;
|
|
4323
4331
|
};
|
|
4324
|
-
imports.wbg.
|
|
4325
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4332
|
+
imports.wbg.__wbindgen_closure_wrapper64433 = function(arg0, arg1, arg2) {
|
|
4333
|
+
const ret = makeMutClosure(arg0, arg1, 48580, __wbg_adapter_65);
|
|
4326
4334
|
return ret;
|
|
4327
4335
|
};
|
|
4328
|
-
imports.wbg.
|
|
4329
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4336
|
+
imports.wbg.__wbindgen_closure_wrapper64572 = function(arg0, arg1, arg2) {
|
|
4337
|
+
const ret = makeMutClosure(arg0, arg1, 48683, __wbg_adapter_68);
|
|
4330
4338
|
return ret;
|
|
4331
4339
|
};
|
|
4332
|
-
imports.wbg.
|
|
4333
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4340
|
+
imports.wbg.__wbindgen_closure_wrapper68392 = function(arg0, arg1, arg2) {
|
|
4341
|
+
const ret = makeMutClosure(arg0, arg1, 51620, __wbg_adapter_71);
|
|
4334
4342
|
return ret;
|
|
4335
4343
|
};
|
|
4336
|
-
imports.wbg.
|
|
4337
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4344
|
+
imports.wbg.__wbindgen_closure_wrapper69590 = function(arg0, arg1, arg2) {
|
|
4345
|
+
const ret = makeMutClosure(arg0, arg1, 52234, __wbg_adapter_74);
|
|
4338
4346
|
return ret;
|
|
4339
4347
|
};
|
|
4340
|
-
imports.wbg.
|
|
4341
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4348
|
+
imports.wbg.__wbindgen_closure_wrapper69592 = function(arg0, arg1, arg2) {
|
|
4349
|
+
const ret = makeMutClosure(arg0, arg1, 52234, __wbg_adapter_74);
|
|
4342
4350
|
return ret;
|
|
4343
4351
|
};
|
|
4344
|
-
imports.wbg.
|
|
4345
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4352
|
+
imports.wbg.__wbindgen_closure_wrapper69594 = function(arg0, arg1, arg2) {
|
|
4353
|
+
const ret = makeMutClosure(arg0, arg1, 52234, __wbg_adapter_74);
|
|
4346
4354
|
return ret;
|
|
4347
4355
|
};
|
|
4348
|
-
imports.wbg.
|
|
4349
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4356
|
+
imports.wbg.__wbindgen_closure_wrapper74157 = function(arg0, arg1, arg2) {
|
|
4357
|
+
const ret = makeMutClosure(arg0, arg1, 55468, __wbg_adapter_81);
|
|
4350
4358
|
return ret;
|
|
4351
4359
|
};
|
|
4352
|
-
imports.wbg.
|
|
4353
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4360
|
+
imports.wbg.__wbindgen_closure_wrapper75109 = function(arg0, arg1, arg2) {
|
|
4361
|
+
const ret = makeMutClosure(arg0, arg1, 55834, __wbg_adapter_84);
|
|
4354
4362
|
return ret;
|
|
4355
4363
|
};
|
|
4356
|
-
imports.wbg.
|
|
4357
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4364
|
+
imports.wbg.__wbindgen_closure_wrapper77254 = function(arg0, arg1, arg2) {
|
|
4365
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4358
4366
|
return ret;
|
|
4359
4367
|
};
|
|
4360
|
-
imports.wbg.
|
|
4361
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4368
|
+
imports.wbg.__wbindgen_closure_wrapper77256 = function(arg0, arg1, arg2) {
|
|
4369
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_90);
|
|
4362
4370
|
return ret;
|
|
4363
4371
|
};
|
|
4364
|
-
imports.wbg.
|
|
4365
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4372
|
+
imports.wbg.__wbindgen_closure_wrapper77258 = function(arg0, arg1, arg2) {
|
|
4373
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4366
4374
|
return ret;
|
|
4367
4375
|
};
|
|
4368
|
-
imports.wbg.
|
|
4369
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4376
|
+
imports.wbg.__wbindgen_closure_wrapper77260 = function(arg0, arg1, arg2) {
|
|
4377
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4370
4378
|
return ret;
|
|
4371
4379
|
};
|
|
4372
|
-
imports.wbg.
|
|
4373
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4380
|
+
imports.wbg.__wbindgen_closure_wrapper77262 = function(arg0, arg1, arg2) {
|
|
4381
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4374
4382
|
return ret;
|
|
4375
4383
|
};
|
|
4376
|
-
imports.wbg.
|
|
4377
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4384
|
+
imports.wbg.__wbindgen_closure_wrapper77264 = function(arg0, arg1, arg2) {
|
|
4385
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4378
4386
|
return ret;
|
|
4379
4387
|
};
|
|
4380
|
-
imports.wbg.
|
|
4381
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4388
|
+
imports.wbg.__wbindgen_closure_wrapper77266 = function(arg0, arg1, arg2) {
|
|
4389
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4382
4390
|
return ret;
|
|
4383
4391
|
};
|
|
4384
|
-
imports.wbg.
|
|
4385
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4392
|
+
imports.wbg.__wbindgen_closure_wrapper77268 = function(arg0, arg1, arg2) {
|
|
4393
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_87);
|
|
4386
4394
|
return ret;
|
|
4387
4395
|
};
|
|
4388
|
-
imports.wbg.
|
|
4389
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4396
|
+
imports.wbg.__wbindgen_closure_wrapper77270 = function(arg0, arg1, arg2) {
|
|
4397
|
+
const ret = makeMutClosure(arg0, arg1, 57291, __wbg_adapter_105);
|
|
4390
4398
|
return ret;
|
|
4391
4399
|
};
|
|
4392
4400
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/pkg/webgpu_build_bg.wasm
CHANGED
|
Binary file
|
|
@@ -107,18 +107,18 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
|
107
107
|
export const __wbindgen_export_7: WebAssembly.Table;
|
|
108
108
|
export const __externref_table_dealloc: (a: number) => void;
|
|
109
109
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
110
|
-
export const
|
|
111
|
-
export const
|
|
110
|
+
export const closure15335_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
111
|
+
export const closure48579_externref_shim: (a: number, b: number, c: any) => void;
|
|
112
112
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
113
113
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______14: (a: number, b: number) => void;
|
|
114
|
-
export const
|
|
114
|
+
export const closure52233_externref_shim: (a: number, b: number, c: any) => void;
|
|
115
115
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______16: (a: number, b: number) => void;
|
|
116
116
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______17: (a: number, b: number) => void;
|
|
117
|
-
export const
|
|
118
|
-
export const
|
|
117
|
+
export const closure57290_externref_shim: (a: number, b: number, c: any) => void;
|
|
118
|
+
export const closure57294_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
119
119
|
export const _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______20: (a: number, b: number) => void;
|
|
120
|
-
export const
|
|
121
|
-
export const
|
|
122
|
-
export const
|
|
120
|
+
export const closure116818_externref_shim: (a: number, b: number, c: any) => void;
|
|
121
|
+
export const closure131846_externref_shim: (a: number, b: number, c: any) => void;
|
|
122
|
+
export const closure134742_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
123
123
|
export const __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
124
124
|
export const __wbindgen_start: (a: number) => void;
|
|
Binary file
|