Rua

Results 107 issues of Rua

Running my Vulkano project inside `vkconfig`, I get the following performance warning from the validation layers: > Validation Performance Warning: [ UNASSIGNED-BestPractices-vkCreateCommandPool-command-buffer-reset ] Object 0: handle = 0x5600fad74430, type =...

This is quite a weird issue, so I hope I explain it well enough. I want to set up my rendering to draw to an offscreen image, and then blit...

status: unknown-cause

I have buffers containing different vertex formats, but I want to store them in a single data structure, which necessitates storing them as `dyn BufferAccess` to erase the type. However,...

Right now there doesn't seem to be any documentation about how to upload mipmapped images. The standard `from_iter` and `from_buffer` constructors of `ImmutableImage` don't currently support mipmaps, so one has...

experience: easy
type: documentation

In the documentation for `RestrictedStorage`, there is some example code that calls `comps.get_mut_unchecked()`. But a search for `get_mut_unchecked` in the documentation turns up nothing. What type is this defined on,...

bug

Shrev's `ReaderId` is re-exported from Specs, but for some reason `EventChannel` isn't. Since each is unusable without the other, I think it only makes sense to export them together. `EventIterator`...

feature-request

At the moment, `MaskedStorage` requires a `Component` bound on its type parameter, and it's missing two of the methods that `UnprotectedStorage` offers. I think it would make the type more...

feature-request

Fixes #664 ## API changes This changes three things: * `UnprotectedStorage` has its item type as an associated type rather than as a generic type parameter. * The type parameter...

Is the order in which entities appear in a join deterministic at all? As in, is it predictable based on the current world state and thus replicable? If not, does...

feature-request

At the moment, the only way to deserialize a `World` is through `Registry::as_deserialize(_into_world)`. There are no types that implement `Deserialize`, which means it's not possible to include a world in...