View Single Post
Old 08-28-2015, 07:49 AM   #271
brucelee
Addict
brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.brucelee can program the VCR without an owner's manual.
 
Posts: 352
Karma: 188498
Join Date: Jan 2015
Location: Romania
Device: Kobo Aura One
Quote:
Originally Posted by LittleBiG View Post
Ah, yes, sorry. I tried 3 pairs, they worked. Thanks!
Great.


Quote:
Originally Posted by j0r13n View Post
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(00_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(00ScreenWidth(), ScreenHeight());

// Show inverted image
PartialUpdate(00ScreenWidth(), ScreenHeight());

// Draw page buffer
draw(00_front->GetWidth(), _front->GetHeight());

// Show page
PartialUpdate(00ScreenWidth(), ScreenHeight()); 
So I'll just leave it as it is. I seriously don't see anything wrong with the screen update.

Last edited by brucelee; 08-28-2015 at 07:53 AM.
brucelee is offline   Reply With Quote