.. | .. |
---|
16 | 16 | #include "../ebc_dev.h" |
---|
17 | 17 | #include "epd_lut.h" |
---|
18 | 18 | |
---|
19 | | -static int (*lut_get)(struct epd_lut_data *, enum epd_lut_type, int); |
---|
| 19 | +static int (*lut_get)(struct epd_lut_data *, enum epd_lut_type, int, int); |
---|
20 | 20 | |
---|
21 | 21 | int epd_lut_from_mem_init(void *waveform) |
---|
22 | 22 | { |
---|
.. | .. |
---|
66 | 66 | return NULL; |
---|
67 | 67 | } |
---|
68 | 68 | |
---|
69 | | -int epd_lut_get(struct epd_lut_data *output, enum epd_lut_type lut_type, int temperture) |
---|
| 69 | +int epd_lut_get(struct epd_lut_data *output, enum epd_lut_type lut_type, int temperture, int pic) |
---|
70 | 70 | { |
---|
71 | | - return lut_get(output, lut_type, temperture); |
---|
| 71 | + return lut_get(output, lut_type, temperture, pic); |
---|
72 | 72 | } |
---|
73 | 73 | |
---|
74 | 74 | //you can change overlay lut mode here |
---|