Alex Parrill

Results 76 issues of Alex Parrill

This is a constructor of `GlutinSurface` that allows the `EventLoop`, `WindowBuilder`, and `ContextBuilder` to be passed in and thus configured by the user (In particular, the existing constructors do not...

Allows adding attributes to the wrapper structs, in particular derive. For example, allows the wrappers to derive bytemuck::Pod. Also add #[repr(transparent)] to the wrappers, since there's no reason not to...

Luminance should support setting the `TEXTURE_SWIZZLE_R/G/B/A` texture parameters, defined in section 3.8.8 of the OpenGL 3.3 spec. Should be fairly straightforward to implement in the shader code. Would make R8...

Allows external crates to write their own `Sender` implementations and use them with `Client`. This involved refactoring a decent amount of the crate, and probably has some backwards-incompatible changes. I...

Test program that writes a 16-bit-depth RGBA image containing a gradient: ```rust extern crate lodepng; extern crate rgb; use std::iter::repeat; use rgb::RGBA; fn main() { let height = 500; let...

Is linux supported? If not, can it be? Running with mono fails: ``` Unhandled Exception: System.TypeInitializationException: The type initializer for 'Toolbox.Library.Runtime' threw an exception. ---> System.TypeInitializationException: The type initializer for...

Please add an option to link Enet as a shared library. It would greatly help my use case (loading Enet with LuaJIT's FFI, which only loads shared libraries)

Mono-D doesn't seem to scan DUB dependencies recursively when autocompleting. Only dependencies listed in the main project's `dub.json` appear. In addition, subpackages never seem to be scanned, even if directly...

dub

It'd be convenient if a callback could be registered with `color_eyre::config::HookBuilder` that gets called with the error passed to the `EyreHandler` and can add sections to the returned `Report`. My...

## Bevy version Tested both 0.12 and commit `18d001d27ce475388743d9825f2833ce51f5b20d` (current main as of writing) ## \[Optional\] Relevant system information Arch Linux, Hyprland compositor v0.30.0, laptop with AMD / Nvidia hybrid...

C-Bug
A-Rendering
O-Linux
S-Blocked