Dusty DeWeese

Results 29 comments of Dusty DeWeese

Here's my thoughts: - The initial RFC should only consider convex shapes. Concave shapes are much more difficult to work with, and will require convex decomposition for many uses. -...

I thought of a potential use for dynamic queries. I model relations as entities having a component that implements a Relation trait. The entities referred to in each Relation component...

Here's my use case: It's useful to selectively disable plugins for power saving or when capabilities are disabled in a mobile app. For example, I have to do this in...

Reverting #552 fixes Rayon's tests and works with my app. Add this to Rayon's `Cargo.toml` to try it: ``` [patch.crates-io] crossbeam-deque = { git = "https://github.com/HackerFoo/crossbeam.git", branch = "revert-552" }...

`WindowEvent::Focused` is sent in response to [`becomeKey()/resignKey()`](https://developer.apple.com/documentation/uikit/uiwindow), which seems to be for indicating the most recently active window, while `WindowEvent::Foreground/Background` events indicate transitions in an [app's lifecycle](https://developer.apple.com/documentation/uikit/app_and_environment/managing_your_app_s_life_cycle): ![iOS App Lifecycle](https://docs-assets.developer.apple.com/published/c834d5ac04/[email protected])...

Sorry, I don't have Android set up right now, and I can't justify putting the time in to properly test it. For someone who has `winit` running on Android, it...

@srtemp If you don't mind using Nix on your Mac, you could try: https://github.com/HackerFoo/nix-symbiflow Then, in your checked out repo, run: ``` nix-shell /path/to/nix-symbiflow -A fpga-tool-perf --use-prebuilt-symbiflow false ``` It...

Could I get a statement whether we can currently generate a working bitstream using SymbiFlow & VPR for `baselitex` on `nexys-video`? If so, is there a working test somewhere? Thanks.

In my case, it would be sufficient just to add a `--params_string` flags, but for now I've just modified `exhaust.py` since it's a one-off experiment. If I get time, I'll...

Related issue: https://github.com/timvideos/litex-buildenv/issues/466