sagudev
sagudev
@Arshia001 unfortunately redfire does not have access to laptop for the two weeks or so.
One thread tries to acquire lock on https://github.com/gfx-rs/wgpu/blob/fa48562229ae9effe10696e74249304f1fb9a3f0/wgpu-core/src/resource.rs#L646 while other already acquired it: https://github.com/gfx-rs/wgpu/blob/fa48562229ae9effe10696e74249304f1fb9a3f0/wgpu-core/src/device/resource.rs#L335 this second thread tries to acquire: https://github.com/gfx-rs/wgpu/blob/fa48562229ae9effe10696e74249304f1fb9a3f0/wgpu-core/src/device/resource.rs#L359 that is already acquired by https://github.com/gfx-rs/wgpu/blob/fa48562229ae9effe10696e74249304f1fb9a3f0/wgpu-core/src/device/queue.rs#L1162 and later passed...
here we actually need to invalidate pass per step 5 in device timeline https://gpuweb.github.io/gpuweb/#dom-gpucommandencoder-beginrenderpass so validation error will need to happen in end pass.
I think this will be harder as I though because, even though we can detect error in beginRenderPass we only need to return invalid (is this even possible in wgpu?)...
I was able to reproduce problem on both Windows 11 and Windows 10 with servo 2023-01-28. Sometimes if you get lucky the page actually loads before it crashes.
Here is interesting blog post about dylib: https://robert.kra.hn/posts/2022-09-09-speeding-up-incremental-rust-compilation-with-dylibs/ I think something like that would be the best way for mozjs. mozangle is a bit more complicated on windows as we...
Hm, I'm not entirely sure on stability of dylib, but thinking about it again maybe that's not the best way as we still need rust code generated by bindgen. We...
@wusyong SpiderMonkey does offer prebuilds as artifacts on taskcluster, but we are patching SM in mozjs, so we would need to this for ourself. I have rough idea how this...
> @sagudev What is the status of this one? Rebase and see if we can merge it soon? My plan is to firstly get https://github.com/servo/servo/pull/31194 and stabilize WebGPU CTS expectations...
There is https://github.com/filips123/WebAppManifestRS for reading webapp manifests, that also powers https://github.com/filips123/PWAsForFirefox.