31 lines
630 B
C
Executable File
31 lines
630 B
C
Executable File
/**
|
|
Image operation module.
|
|
|
|
This module include the image operation like fill image,copy image, scale image, rotate image ...
|
|
|
|
@file gximage.h
|
|
@ingroup imgtrans
|
|
|
|
Copyright Novatek Microelectronics Corp. 2018. All rights reserved.
|
|
*/
|
|
#ifndef _GX_IMAGE_INTERNAL_H_
|
|
#define _GX_IMAGE_INTERNAL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int gximage_init(void);
|
|
|
|
extern void gximage_exit(void);
|
|
|
|
extern void gximg_memset(void *buf, unsigned char val, int len);
|
|
|
|
extern void gximg_memcpy(void *buf, void *src, int len);
|
|
|
|
#ifdef __cplusplus
|
|
} //extern "C"
|
|
#endif
|
|
|
|
#endif //_GX_IMAGE_INTERNAL_H_
|