Elias Gabriel Amaral da Silva

Results 21 issues of Elias Gabriel Amaral da Silva

I note that `Game` has the following methods: ```rust fn interact(&mut self, _input: &mut Self::Input, _window: &mut Window) fn update(&mut self, _window: &Window) ``` But `load::Task::run` can only be called...

question

For an ui element made out of `graphics::Canvas`, is it better to 1. build a new `ui::Canvas` 2. make it so that `ui::Image` can accept either `graphics::Image` or `graphics::Canvas` 3....

feature
help wanted
good first issue
question

I submitted #104 to avoid copying the buffer every time I submit a texture to the gpu, but it turns out that each gpu backend receives a `&image::DynamicImage` and performs...

question
improvement

### Description Clicking the tray icon should minimize the window (like other apps with systray support, such as Telegram). This is not the same issue as having Nativefier minimize to...

bug
linux

`pest_derive` currently generates a `Rule` enum without a corresponding `enum Rule` anywhere in the code. That way, there is no natural place for inserting attributes and custom derive. My suggestion...

enhancement
generator
needs-decision

Flyway features [repeatable migrations](https://flywaydb.org/documentation/tutorials/repeatable) for defining objects in the db that can simply be tracked as is from the source code (typically because they are stateless, like `CREATE OR REPLACE...

enhancement
help wanted

Can kbct disable a key, instead of mapping it to something else?

I didn't find this in the docs so I thought about asking! Is cactusref's approach fundamentally incompatible with multithreading, or it's just that currently the implementation is focusing in single-threaded...

A-std-compat
C-enhancement
C-question

Rapier uses Rayon's parallel iterators to parallelize the engine (through the macros [`par_iter!` and `par_iter_mut!`](https://github.com/dimforge/rapier/blob/958fba8ed43328e7e33bb9585a735577fa1061e1/src/lib.rs#L70-L90), which either calls `.iter()` or `.par_iter()` (or the mutable equivalents). But Bevy also has parallel...

C-Enhancement
D-Difficult
P-Low
S-not-started
A-Integration

When using migration frameworks like [Refinery](https://github.com/rust-db/refinery) one usually don't list the entire DB schema at once but create incremental migrations that alter parts of the schema at time. Am I...

documentation
good first issue