mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-21 15:45:22 +08:00
As always, full log is in GitHub. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2449 bbd45198-f89e-11dd-88c7-29a3b14d5316
11 lines
307 B
C
11 lines
307 B
C
#ifndef __RTGUI_BLIT_H__
|
|
#define __RTGUI_BLIT_H__
|
|
|
|
#include <rtgui/rtgui.h>
|
|
|
|
typedef void (*rtgui_blit_line_func)(rt_uint8_t *dst, rt_uint8_t *src, int line);
|
|
rtgui_blit_line_func rtgui_blit_line_get(int dst_bpp, int src_bpp);
|
|
rtgui_blit_line_func rtgui_blit_line_get_inv(int dst_bpp, int src_bpp);
|
|
|
|
#endif
|