mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/*--------------------------------------------------------------------------
|
|
* Project: D/AVE
|
|
* File: dave_utility.h (%version: 3 %)
|
|
* created Tue Jul 19 12:52:55 2005 by hh04027
|
|
*
|
|
* Description:
|
|
* %date_modified: Tue Oct 24 11:30:35 2006 % (%derived_by: hh74040 %)
|
|
*
|
|
* Changes:
|
|
* 2008-01-14 ASc changed comments from C++ to C, removed tabs
|
|
* 2012-09-25 BSp MISRA cleanup
|
|
*-------------------------------------------------------------------------- */
|
|
|
|
#ifndef __1_dave_utility_h_H
|
|
#define __1_dave_utility_h_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/*--------------------------------------------------------------------------- */
|
|
|
|
#if 0 /* already declared in dave_driver.h */
|
|
D2_EXTERN d2_s32 d2_utility_maptriangle( d2_device *handle, const d2_f32 *points, const d2_f32 *uvs );
|
|
D2_EXTERN d2_s32 d2_utility_perspectivewarp( d2_device *handle, d2_u16 srcwidth, d2_u16 srcheight, d2_s16 srcx, d2_s16 srcy, d2_s16 dstwidth, d2_s16 dstheight, d2_s16 dstx, d2_s16 dsty, d2_u16 wt );
|
|
#endif /* 0 */
|
|
|
|
/*--------------------------------------------------------------------------- */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|