24 lines
461 B
C
24 lines
461 B
C
/*
|
|
* Copyright (c) 2025 Quaming Intelligent Technology Co., Ltd.
|
|
*
|
|
* All Rights Reserved.
|
|
* Confidential and Proprietary - Quaming Intelligent Technology Co., Ltd.
|
|
*/
|
|
|
|
#include "quagl/qua_gl.h"
|
|
|
|
#ifndef __QUA_GL_DRAW_IMAGE_H__
|
|
#define __QUA_GL_DRAW_IMAGE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
QUA_BOOL qua_gl_draw_image(qua_gl_transform_t *transform, qua_gl_surface_t *src_suface, qua_gl_surface_t *dst_surface);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|