ddp_dither.h 286 B

123456789101112131415
  1. #ifndef __DDP_DITHER_H__
  2. #define __DDP_DITHER_H__
  3. typedef enum {
  4. DISP_DITHER0,
  5. DISP_DITHER1
  6. } disp_dither_id_t;
  7. void disp_dither_init(disp_dither_id_t id, int width, int height,
  8. unsigned int dither_bpp, void *cmdq);
  9. void dither_test(const char *cmd, char *debug_output);
  10. #endif