Ayrton Sparling
Ayrton Sparling
It would be much easier to use Zodiac if it was on npm :) I can create a pull request with package.json if you would like, so that way all...
I decided to create this issue to keep from spamming #10. The only place I was able to find the EDID was in the CODE region. RAM and EEPROM did...
I copied the example for atomic mode setting but changed the card to `/dev/dri/card1`. It keeps failing with ``` thread 'main' panicked at 'Failed to set mode: InvalidArgument' ``` Any...
Why does mapping require a function to be passed instead of mapping then unmapping on drop? https://github.com/Smithay/gbm.rs/blob/8fd2021415903c961c82d583df7891792c42493b/src/buffer_object.rs#L299-L310
```sh $ uname -a Linux ayrtonslaptop 6.3.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 14 Jun 2023 20:10:31 +0000 x86_64 GNU/Linux ``` https://github.com/Smithay/gbm.rs/blob/8d3cb5a6520c5f1bef667b007afee0e73f480e98/src/buffer_object.rs#L493 Is causing a segmentation fault on my system when the...
I spent some time trying to track down the `cargo xtask codegen` error I was running into while trying to run example myapp-03. The error is somewhat misleading with the...
Fixed bugs like showing the correct free memory on linux do not appear to be fixed in the version installed from npm.
It seems that while using V4L2 on the RPI4 no EPOLLPRI event is ever fired. The stateful decoder in v4l2r requires a EPOLLPRI to read a `v4l2_event` which will trigger...
I have a video stream that changes from 800x600 to 640x480. I'm using the stateful decoder and I expect the `set_capture_format_cb` function to be called when this happens but instead...
I believe `v4l2r::device::queue::FormatBuilder.apply()` should be changed to `.build()` and should not set the format. Instead you should use `queue.set_format()`. I thought that apply was the equivalent was of build because...