-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from NiLuJe/pb-support
PocketBook support
- Loading branch information
Showing
12 changed files
with
902 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2004-2013 Freescale Semiconductor, Inc. All Rights Reserved. | ||
*/ | ||
|
||
/* | ||
* The code contained herein is licensed under the GNU Lesser General | ||
* Public License. You may obtain a copy of the GNU Lesser General | ||
* Public License Version 2.1 or later at the following locations: | ||
* | ||
* http://www.opensource.org/licenses/lgpl-license.html | ||
* http://www.gnu.org/copyleft/lgpl.html | ||
*/ | ||
|
||
/* | ||
* NOTE: Pulled from an EPDCv2 kernel, because we need those constants to build FBInk ;). | ||
*/ | ||
|
||
#ifndef __ASM_ARCH_MXCFB_COMPAT_H__ | ||
#define __ASM_ARCH_MXCFB_COMPAT_H__ | ||
|
||
enum mxcfb_dithering_mode { | ||
EPDC_FLAG_USE_DITHERING_PASSTHROUGH = 0x0, | ||
EPDC_FLAG_USE_DITHERING_FLOYD_STEINBERG, | ||
EPDC_FLAG_USE_DITHERING_ATKINSON, | ||
EPDC_FLAG_USE_DITHERING_ORDERED, | ||
EPDC_FLAG_USE_DITHERING_QUANT_ONLY, | ||
PDC_FLAG_USE_DITHERING_MAX, | ||
}; | ||
|
||
#endif // __ASM_ARCH_MXCFB_COMPAT_H__ |
Oops, something went wrong.