| .. | .. |
|---|
| 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, int); |
|---|
| 19 | +static int (*lut_get)(struct epd_lut_data *, enum epd_lut_type, 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, int pic) |
|---|
| 69 | +int epd_lut_get(struct epd_lut_data *output, enum epd_lut_type lut_type, int temperture) |
|---|
| 70 | 70 | { |
|---|
| 71 | | - return lut_get(output, lut_type, temperture, pic); |
|---|
| 71 | + return lut_get(output, lut_type, temperture); |
|---|
| 72 | 72 | } |
|---|
| 73 | | - |
|---|
| 74 | | -//you can change overlay lut mode here |
|---|
| 75 | | -int epd_overlay_lut(void) |
|---|
| 76 | | -{ |
|---|
| 77 | | - return WF_TYPE_GRAY2; |
|---|
| 78 | | -} |
|---|