Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Definitively disable HW dithering on Kindle #1051

Merged
merged 1 commit into from
Feb 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions ffi/framebuffer_mxcfb.lua
Original file line number Diff line number Diff line change
Expand Up @@ -607,9 +607,11 @@ function framebuffer:init()

-- NOTE: Devices on the Rex platform essentially use the same driver as the Zelda platform, they're just passing a slightly smaller mxcfb_update_data struct
if isZelda or isRex then
if not isNightModeChallenged then
self.device.canHWDither = yes
end
-- NOTE: Turns out, nope, it really doesn't work on *any* of 'em :/ (c.f., ko#5884).
--[[
self.device.canHWDither = yes
--]]

if isZelda then
self.mech_refresh = refresh_zelda
else
Expand Down