this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

🐛Fix pixel lookup in pixmap to HWC conversion

authored by

Gwenn Le Bihan and committed by
Gwen Le Bihan
782fa97a 8bd143b4

+2 -2
+2 -2
src/canvas.rs
··· 633 633 data.par_chunks_exact_mut(3) 634 634 .enumerate() 635 635 .for_each(|(index, chunk)| { 636 - let x = index / height; 637 - let y = index % height; 636 + let x = index % width; 637 + let y = index / width; 638 638 639 639 let pixel = pixmap 640 640 .pixel(x as u32, y as u32)