Quote:
Originally Posted by LittleBiG
Ah, yes, sorry. I tried 3 pairs, they worked. Thanks!
|
Great.
Quote:
Originally Posted by j0r13n
There seems to be a refreshing bug.
When a pageturn is processed IMO the following happens:
- step 1: the new page is displayed inverted
- step 2: just before step 3, the old page is displayed inverted
- step 3: the new page is displayed normal
So IMO step 2 should be skipped which will result in a slightly more crisp display with more consitent black text and also better contrast
|
Regarding the full page refresh thing.. I don't see anything wrong with it.
It's used like this:
PHP Code:
// Draw image buffer
draw(0, 0, _front->GetWidth(), _front->GetHeight());
// Show image on screen
FullUpdate();
I've tried simulating what you want but it's moving way slower and it's ghosting:
PHP Code:
// Invert buffer
InvertArea(0, 0, ScreenWidth(), ScreenHeight());
// Show inverted image
PartialUpdate(0, 0, ScreenWidth(), ScreenHeight());
// Draw page buffer
draw(0, 0, _front->GetWidth(), _front->GetHeight());
// Show page
PartialUpdate(0, 0, ScreenWidth(), ScreenHeight());
So I'll just leave it as it is. I seriously don't see anything wrong with the screen update.