| 123456789101112131415 |
- #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);
- void dither_test(const char *cmd, char *debug_output);
- #endif
|