mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
7 lines
260 B
C
7 lines
260 B
C
#ifndef __EDTAA3_H__
|
|
#define __EDTAA3_H__
|
|
|
|
extern void computegradient(double *img, int w, int h, double *gx, double *gy);
|
|
extern void edtaa3(double *img, double *gx, double *gy, int w, int h, short *distx, short *disty, double *dist);
|
|
|
|
#endif // __EDTAA3_H__
|