18 lines
214 B
C
18 lines
214 B
C
|
#ifndef _MASK_H_
|
||
|
#define _MASK_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace Mask
|
||
|
{
|
||
|
struct mask
|
||
|
{
|
||
|
int size;
|
||
|
uint8_t *mask;
|
||
|
};
|
||
|
|
||
|
mask * createCircleMask(int size, bool gradient = false);
|
||
|
}
|
||
|
|
||
|
#endif /* ifndef _MASK_H_ */
|