Skip to content

Commit

Permalink
More correct H2O update mode handling...
Browse files Browse the repository at this point in the history
The H2O, while having a Carta screen, doesn't actually handle REAGL
properly, thanks to some strange decision on kobo's part.

I've been confusing everyone from the start because I was convinced
it would handle REAGL, having a Carta screen, and having been released
after the Aura, but, nope.
Besides sniffing the ioctl with strace, that's also easily confirmed
by checking Nickel's settings: on the H2O, we only have the classic page
count refresh setting available, and not the extended one available on
the Aura.

TL;DR: Make it behave like other non-RAGL Kobo devices, instead of brokenly
treating it like a special snowflake ;).
  • Loading branch information
NiLuJe committed Apr 26, 2015
1 parent 14dd422 commit bebfc78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ffi/framebuffer_mxcfb.lua
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ function framebuffer:init()
self.wait_for_marker_fast = true
elseif self.device.model == "Kobo_dahlia" then
self.wait_for_marker_full = true
self.wait_for_marker_partial = true
self.wait_for_marker_fast = true
self.wait_for_marker_partial = false
self.wait_for_marker_fast = false
elseif self.device.model == "Kobo_pixie" then
self.wait_for_marker_full = true
self.wait_for_marker_partial = false
Expand Down

0 comments on commit bebfc78

Please sign in to comment.