drv_g2d.h 331 B

12345678910111213141516
  1. #ifndef __DRV_G2D_H__
  2. #define __DRV_G2D_H__
  3. #include <rtthread.h>
  4. #include "hal_data.h"
  5. int G2d_Drv_HWInit(void);
  6. #ifdef PKG_USING_LVGL
  7. #include "lvgl.h"
  8. void lv_port_gpu_blit(int32_t x,
  9. int32_t y,
  10. const void *p,
  11. const lv_area_t *area);
  12. #endif
  13. #endif