Closed
Bug 1882442
Opened 2 years ago
Closed 6 months ago
[WebGPU] Demo at https://kishimisu.github.io/WebGPU-Fluid-Simulation/ doesnt draw anything on the screen
Categories
(Core :: Graphics: WebGPU, defect)
Core
Graphics: WebGPU
Tracking
()
RESOLVED
FIXED
People
(Reporter: mayankleoboy1, Unassigned)
References
(Blocks 2 open bugs, )
Details
Go to https://kishimisu.github.io/WebGPU-Fluid-Simulation/
AR: Nothing is drawn on the screen
ER: It should. This demo used to work in November2024 (see comment at https://bugzilla.mozilla.org/show_bug.cgi?id=1860801#c7)
FWIW, a list of webgpu demos can be found here: https://github.com/mikbry/awesome-webgpu#demos
Comment 1•2 years ago
|
||
Definitely at least blocked on bug 1879988. There are other shader issues to diagnose, too.
Depends on: 1877114
Updated•2 years ago
|
Updated•2 years ago
|
Depends on: webgpu-type-conversion
Comment 2•2 years ago
|
||
I noticed that many (most?) of the shaders being used here are blocked on bug 1829879:
updateDyeShader
advectDyeShader
(assigningx = 0
whenx
is anf32
)boundaryShader
andboundaryPressureShader
(assigningpos.x += 1
whenx
is anf32
)renderShader
(i.e.,the type of `bgCol` is expected to be `vec3<f32>`, but got `vec3<i32>`
)
Updated•2 years ago
|
Blocks: webgpu-apps
Severity: -- → S3
Updated•2 years ago
|
Blocks: webgpu-triage
Comment 3•7 months ago
|
||
The only issue I see in the console right now is the last one from comment #2. It should be fixed by https://github.com/gfx-rs/wgpu/pull/7367.
See Also: → https://github.com/gfx-rs/wgpu/pull/7367
Comment 4•6 months ago
|
||
This works now.
Status: NEW → RESOLVED
Closed: 6 months ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•