thedmd / pixeltoaster

PixelToaster is a framebuffer library for C++
45 stars 9 forks source link

Wrong dirty rectangle mapping #72

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Update display with a custom ractangle. Coordinates should be different
and non-standard.

What is the expected output? What do you see instead?
Selected rectangle is (L:10, R:100, T:20, B:200), presented rectangle is
(L:10, R:200, T:20, B:200).

What version of the product are you using? On what operating system?
Latest 1.4 from SVN under Windows Vista.

Please provide any additional information below.
Just replace line 936:
                rect.right = dirtyBox->yEnd;
with
                rect.right = dirtyBox->xEnd;

Original issue reported on code.google.com by mich...@gmail.com on 13 Sep 2008 at 2:46

GoogleCodeExporter commented 8 years ago
fixed, thanks very much for reporting the bug!

Original comment by glenn.fi...@gmail.com on 13 Sep 2008 at 3:39