1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef __DDP_DITHER_H__ #define __DDP_DITHER_H__ typedef enum { DISP_DITHER0, DISP_DITHER1 } disp_dither_id_t; void disp_dither_init(disp_dither_id_t id, int width, int height, unsigned int dither_bpp, void *cmdq); #endif