mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-06-19 20:59:11 +08:00
98dc2877a5
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@969 bbd45198-f89e-11dd-88c7-29a3b14d5316
10 lines
244 B
C
10 lines
244 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);
|
|
|
|
#endif
|