tahoma2d/toonz/sources/stdfx/igs_motion_blur.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

31 lines
593 B
C++

#ifndef igs_motion_blur_h
#define igs_motion_blur_h
#ifndef IGS_MOTION_BLUR_EXPORT
#define IGS_MOTION_BLUR_EXPORT
#endif
namespace igs
{
namespace motion_blur
{
IGS_MOTION_BLUR_EXPORT void convert(
const unsigned char *image_in,
unsigned char *image_out,
const int height,
const int width,
const int channels,
const int bits,
const double x_vector = 1.0,
const double y_vector = 1.0,
const double vector_scale = 1.0,
const double curve = 1.0,
const int zanzo_length = 0.0,
const double zanzo_power = 1.0,
const bool alpha_rend_sw = true);
}
}
#endif /* !igs_motion_blur_h */