Yoon Yeomin
Yoon Yeomin
@donhuvy It looks like cp311 (Python 3.11) release wheel for linux is already on stable. But other platforms like windows or mac is still not supported.
@teoxoy Sure! * I tested using built-in monitor. * It's Asus Zephyrus M16 (2022). It has MUX to disable internal GPU. * Issue persists with a monitor connected to dGPU...
Looks like related to this SO question: https://stackoverflow.com/q/58808444
@cwfitzgerald Sorry, but I do not own the laptop anymore. Maybe others could help? @n1ght-hunter
> Sorry for the late reply. No problem. 😁 > I'm not against this kind of utilities, but I'm wondering how useful this is in the context of Rust. My...
I have implemented it [here](https://github.com/jsonmona/jpeg-encoder/tree/maxsize). The function looks like: ```rust pub fn max_output_size(width: u16, height: u16, sampling_factor: SamplingFactor) -> u64 { let (mcu_width, mcu_height) = sampling_factor.mcu_size(); let padded_w = (width...