@dcl-regenesislabs/bevy-explorer-web 0.1.0-21253487481.commit-7fbf319 → 0.1.0-21289091889.commit-a8880bb
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/index.html +2 -2
- package/package.json +3 -3
- package/pkg/snippets/comms-53217a45365bb5fa/livekit_web_bindings.js +405 -411
- package/pkg/webgpu_build.d.ts +103 -11
- package/pkg/webgpu_build.js +525 -90
- package/pkg/webgpu_build_bg.wasm +0 -0
- package/pkg/webgpu_build_bg.wasm.d.ts +49 -11
package/pkg/webgpu_build.d.ts
CHANGED
|
@@ -98,6 +98,60 @@ export function op_portable_spawn(state: WorkerContext, pid?: string | null, ens
|
|
|
98
98
|
export function op_portable_kill(state: WorkerContext, pid: string): Promise<boolean>;
|
|
99
99
|
export function op_portable_list(state: WorkerContext): Promise<any[]>;
|
|
100
100
|
export function gpu_cache_hash(): string;
|
|
101
|
+
/**
|
|
102
|
+
* Kind of the packet.
|
|
103
|
+
*
|
|
104
|
+
* Keep in track with
|
|
105
|
+
* [https://github.com/livekit/protocol/blob/e7532dfc617d0c920eb905a93b6ca0d3ca4033e9/protobufs/livekit_models.proto#L324]
|
|
106
|
+
*/
|
|
107
|
+
export enum DataPacketKind {
|
|
108
|
+
Reliable = 0,
|
|
109
|
+
Lossy = 1,
|
|
110
|
+
}
|
|
111
|
+
export class AudioCaptureOptions {
|
|
112
|
+
private constructor();
|
|
113
|
+
free(): void;
|
|
114
|
+
get autoGainControl(): boolean | undefined;
|
|
115
|
+
set autoGainControl(value: boolean | null | undefined);
|
|
116
|
+
get channelCount(): bigint | undefined;
|
|
117
|
+
set channelCount(value: bigint | null | undefined);
|
|
118
|
+
get echoCancellation(): boolean | undefined;
|
|
119
|
+
set echoCancellation(value: boolean | null | undefined);
|
|
120
|
+
get latency(): number | undefined;
|
|
121
|
+
set latency(value: number | null | undefined);
|
|
122
|
+
get noiseSuppression(): boolean | undefined;
|
|
123
|
+
set noiseSuppression(value: boolean | null | undefined);
|
|
124
|
+
get voiceIsolation(): boolean | undefined;
|
|
125
|
+
set voiceIsolation(value: boolean | null | undefined);
|
|
126
|
+
get sampleRate(): bigint | undefined;
|
|
127
|
+
set sampleRate(value: bigint | null | undefined);
|
|
128
|
+
get sampleSize(): bigint | undefined;
|
|
129
|
+
set sampleSize(value: bigint | null | undefined);
|
|
130
|
+
}
|
|
131
|
+
export class DataPublishOptions {
|
|
132
|
+
private constructor();
|
|
133
|
+
free(): void;
|
|
134
|
+
}
|
|
135
|
+
export class InternalRoomConnectOptions {
|
|
136
|
+
private constructor();
|
|
137
|
+
free(): void;
|
|
138
|
+
autoSubscribe: boolean;
|
|
139
|
+
peerConnectionTimeout: number;
|
|
140
|
+
maxRetries: number;
|
|
141
|
+
websocketTimeout: number;
|
|
142
|
+
}
|
|
143
|
+
export class InternalRoomOptions {
|
|
144
|
+
private constructor();
|
|
145
|
+
free(): void;
|
|
146
|
+
adaptiveStream: boolean;
|
|
147
|
+
dynacast: boolean;
|
|
148
|
+
stopLocalTrackOnUnpublish: boolean;
|
|
149
|
+
disconnectOnPageLeave: boolean;
|
|
150
|
+
}
|
|
151
|
+
export class ParticipantSid {
|
|
152
|
+
private constructor();
|
|
153
|
+
free(): void;
|
|
154
|
+
}
|
|
101
155
|
export class WorkerContext {
|
|
102
156
|
private constructor();
|
|
103
157
|
free(): void;
|
|
@@ -110,6 +164,43 @@ export interface InitOutput {
|
|
|
110
164
|
readonly engine_init: () => any;
|
|
111
165
|
readonly engine_run: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
|
|
112
166
|
readonly init_asset_load_thread: () => void;
|
|
167
|
+
readonly __wbg_audiocaptureoptions_free: (a: number, b: number) => void;
|
|
168
|
+
readonly __wbg_datapublishoptions_free: (a: number, b: number) => void;
|
|
169
|
+
readonly __wbg_get_audiocaptureoptions_autoGainControl: (a: number) => number;
|
|
170
|
+
readonly __wbg_get_audiocaptureoptions_channelCount: (a: number) => [number, bigint];
|
|
171
|
+
readonly __wbg_get_audiocaptureoptions_echoCancellation: (a: number) => number;
|
|
172
|
+
readonly __wbg_get_audiocaptureoptions_latency: (a: number) => [number, number];
|
|
173
|
+
readonly __wbg_get_audiocaptureoptions_noiseSuppression: (a: number) => number;
|
|
174
|
+
readonly __wbg_get_audiocaptureoptions_sampleRate: (a: number) => [number, bigint];
|
|
175
|
+
readonly __wbg_get_audiocaptureoptions_sampleSize: (a: number) => [number, bigint];
|
|
176
|
+
readonly __wbg_get_audiocaptureoptions_voiceIsolation: (a: number) => number;
|
|
177
|
+
readonly __wbg_get_internalroomconnectoptions_autoSubscribe: (a: number) => number;
|
|
178
|
+
readonly __wbg_get_internalroomconnectoptions_maxRetries: (a: number) => number;
|
|
179
|
+
readonly __wbg_get_internalroomconnectoptions_peerConnectionTimeout: (a: number) => number;
|
|
180
|
+
readonly __wbg_get_internalroomconnectoptions_websocketTimeout: (a: number) => number;
|
|
181
|
+
readonly __wbg_get_internalroomoptions_adaptiveStream: (a: number) => number;
|
|
182
|
+
readonly __wbg_get_internalroomoptions_disconnectOnPageLeave: (a: number) => number;
|
|
183
|
+
readonly __wbg_get_internalroomoptions_dynacast: (a: number) => number;
|
|
184
|
+
readonly __wbg_get_internalroomoptions_stopLocalTrackOnUnpublish: (a: number) => number;
|
|
185
|
+
readonly __wbg_internalroomconnectoptions_free: (a: number, b: number) => void;
|
|
186
|
+
readonly __wbg_internalroomoptions_free: (a: number, b: number) => void;
|
|
187
|
+
readonly __wbg_participantsid_free: (a: number, b: number) => void;
|
|
188
|
+
readonly __wbg_set_audiocaptureoptions_autoGainControl: (a: number, b: number) => void;
|
|
189
|
+
readonly __wbg_set_audiocaptureoptions_channelCount: (a: number, b: number, c: bigint) => void;
|
|
190
|
+
readonly __wbg_set_audiocaptureoptions_echoCancellation: (a: number, b: number) => void;
|
|
191
|
+
readonly __wbg_set_audiocaptureoptions_latency: (a: number, b: number, c: number) => void;
|
|
192
|
+
readonly __wbg_set_audiocaptureoptions_noiseSuppression: (a: number, b: number) => void;
|
|
193
|
+
readonly __wbg_set_audiocaptureoptions_sampleRate: (a: number, b: number, c: bigint) => void;
|
|
194
|
+
readonly __wbg_set_audiocaptureoptions_sampleSize: (a: number, b: number, c: bigint) => void;
|
|
195
|
+
readonly __wbg_set_audiocaptureoptions_voiceIsolation: (a: number, b: number) => void;
|
|
196
|
+
readonly __wbg_set_internalroomconnectoptions_autoSubscribe: (a: number, b: number) => void;
|
|
197
|
+
readonly __wbg_set_internalroomconnectoptions_maxRetries: (a: number, b: number) => void;
|
|
198
|
+
readonly __wbg_set_internalroomconnectoptions_peerConnectionTimeout: (a: number, b: number) => void;
|
|
199
|
+
readonly __wbg_set_internalroomconnectoptions_websocketTimeout: (a: number, b: number) => void;
|
|
200
|
+
readonly __wbg_set_internalroomoptions_adaptiveStream: (a: number, b: number) => void;
|
|
201
|
+
readonly __wbg_set_internalroomoptions_disconnectOnPageLeave: (a: number, b: number) => void;
|
|
202
|
+
readonly __wbg_set_internalroomoptions_dynacast: (a: number, b: number) => void;
|
|
203
|
+
readonly __wbg_set_internalroomoptions_stopLocalTrackOnUnpublish: (a: number, b: number) => void;
|
|
113
204
|
readonly image_processor_init: () => void;
|
|
114
205
|
readonly image_processor_run: () => any;
|
|
115
206
|
readonly __wbg_workercontext_free: (a: number, b: number) => void;
|
|
@@ -214,19 +305,20 @@ export interface InitOutput {
|
|
|
214
305
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
215
306
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
216
307
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
308
|
+
readonly closure15481_externref_shim: (a: number, b: number, c: number, d: any) => void;
|
|
309
|
+
readonly closure41077_externref_shim: (a: number, b: number, c: any) => void;
|
|
310
|
+
readonly closure50203_externref_shim: (a: number, b: number, c: any) => void;
|
|
219
311
|
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______: (a: number, b: number) => void;
|
|
220
|
-
readonly
|
|
221
|
-
readonly
|
|
222
|
-
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______16: (a: number, b: number) => void;
|
|
312
|
+
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______15: (a: number, b: number) => void;
|
|
313
|
+
readonly closure53858_externref_shim: (a: number, b: number, c: any) => void;
|
|
223
314
|
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
|
|
226
|
-
readonly
|
|
227
|
-
readonly
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
315
|
+
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______18: (a: number, b: number) => void;
|
|
316
|
+
readonly closure58928_externref_shim: (a: number, b: number, c: any) => void;
|
|
317
|
+
readonly closure58932_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
318
|
+
readonly _dyn_core_f2710c7f87f75ba1___ops__function__FnMut_____Output______as_wasm_bindgen_654c7ee7fd766678___closure__WasmClosure___describe__invoke______21: (a: number, b: number) => void;
|
|
319
|
+
readonly closure118885_externref_shim: (a: number, b: number, c: any) => void;
|
|
320
|
+
readonly closure134148_externref_shim: (a: number, b: number, c: any) => void;
|
|
321
|
+
readonly closure137041_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
230
322
|
readonly __wbindgen_thread_destroy: (a?: number, b?: number, c?: number) => void;
|
|
231
323
|
readonly __wbindgen_start: (a: number) => void;
|
|
232
324
|
}
|