forked from koreader/koreader-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mxcfb_remarkable_h.lua
58 lines (57 loc) · 1.76 KB
/
mxcfb_remarkable_h.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
local ffi = require("ffi")
ffi.cdef[[
static const int UPDATE_MODE_PARTIAL = 0;
static const int UPDATE_MODE_FULL = 1;
static const int WAVEFORM_MODE_INIT = 0;
static const int WAVEFORM_MODE_DU = 1;
static const int WAVEFORM_MODE_GC16 = 2;
static const int WAVEFORM_MODE_GL16 = 3;
static const int WAVEFORM_MODE_A2 = 4;
static const int WAVEFORM_MODE_AUTO = 257;
static const int TEMP_USE_AMBIENT = 4096;
static const int TEMP_USE_REMARKABLE = 24;
static const int EPDC_FLAG_ENABLE_INVERSION = 1;
static const int EPDC_FLAG_FORCE_MONOCHROME = 2;
static const int EPDC_FLAG_USE_CMAP = 4;
static const int EPDC_FLAG_USE_ALT_BUFFER = 256;
static const int EPDC_FLAG_USE_DITHERING_Y1 = 8192;
static const int EPDC_FLAG_USE_DITHERING_Y4 = 16384;
static const int EPDC_FLAG_USE_REGAL = 32768;
enum mxcfb_dithering_mode {
EPDC_FLAG_USE_DITHERING_PASSTHROUGH = 0,
EPDC_FLAG_USE_DITHERING_FLOYD_STEINBERG = 1,
EPDC_FLAG_USE_DITHERING_ATKINSON = 2,
EPDC_FLAG_USE_DITHERING_ORDERED = 3,
EPDC_FLAG_USE_DITHERING_QUANT_ONLY = 4,
EPDC_FLAG_USE_DITHERING_MAX = 5,
};
struct mxcfb_rect {
unsigned int top;
unsigned int left;
unsigned int width;
unsigned int height;
};
struct mxcfb_alt_buffer_data {
unsigned int phys_addr;
unsigned int width;
unsigned int height;
struct mxcfb_rect alt_update_region;
};
struct mxcfb_update_data {
struct mxcfb_rect update_region;
unsigned int waveform_mode;
unsigned int update_mode;
unsigned int update_marker;
int temp;
unsigned int flags;
int dither_mode;
int quant_bit;
struct mxcfb_alt_buffer_data alt_buffer_data;
};
struct mxcfb_update_marker_data {
unsigned int update_marker;
unsigned int collision_test;
};
static const int MXCFB_SEND_UPDATE = 1078478382;
static const int MXCFB_WAIT_FOR_UPDATE_COMPLETE = 3221767727;
]]