John Wells

Results 37 comments of John Wells

I am seeing the same issue: very long delay for reasonably sized `.mp3` files The following `Cargo.toml` override is what worked for me: ```toml [profile.dev.package.symphonia-bundle-mp3] opt-level = 3 ```

This looks excellent, but the provided instructions fail for me with: ``` [-] Oops, can't find 'llvm-config'. Install clang or set $LLVM_CONFIG or $PATH beforehand. ``` @robmcl4 maybe a section...

The `frames: [2392 frames]` idea sounds clear and avoids the issue you're predicting, yes a terminal full of stuff would be 😔. I was playing around with `Arc` with sounds...

Interesting! I have not tested under wayland yet; and now that I do I am running into similar but different issues using Nvidia driver version 525 (proprietary version, not open)....

I would agree that `OnceLock` is simple enough that writing the get-function is trivial, but we're _lazy_ and so @lordofpipes here is a macro rule for just that. It is...

It appears the `andrienko:updated-version` branch has also fallen behind, in 2021. To get this building again, try something like: ```json "devDependencies": { "rollup": "^2.38.0", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-typescript": "^1.0.1", "tslib": "^2.1.0",...

> can you use cargo tree and confirm that you just have a single version of the profiling and profiling-procmacro crates? Yes - in the actual case of `image`+`rav1e` with...

Yes that works perfectly and fixes my issue with `image` + `rav1e` also! This is better than either fix I suggested and seems like a good item to document for...

When dragging a wire off of a node and releasing the mouse buttons a callback (similar to the context function) should exist so that I can display a list of...

You *might* be able to improve the performance by using a bindless approach where you record one subpass and use push constants or `gl_InstanceIndex` to change what index the next...