Shinya Kitaoka 810553
#pragma once
Shinya Kitaoka 810553
Toshihiro Shimizu 890ddd
#ifndef igs_motion_blur_h
Toshihiro Shimizu 890ddd
#define igs_motion_blur_h
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#ifndef IGS_MOTION_BLUR_EXPORT
Toshihiro Shimizu 890ddd
#define IGS_MOTION_BLUR_EXPORT
Toshihiro Shimizu 890ddd
#endif
Toshihiro Shimizu 890ddd
Shinya Kitaoka 120a6e
namespace igs {
Shinya Kitaoka 120a6e
namespace motion_blur {
Toshihiro Shimizu 890ddd
IGS_MOTION_BLUR_EXPORT void convert(
Shinya Kitaoka 120a6e
    const unsigned char *image_in, unsigned char *image_out,
Toshihiro Shimizu 890ddd
Shinya Kitaoka 120a6e
    const int height, const int width, const int channels, const int bits,
Toshihiro Shimizu 890ddd
Shinya Kitaoka 120a6e
    const double x_vector = 1.0, const double y_vector = 1.0,
Shinya Kitaoka 120a6e
    const double vector_scale = 1.0, const double curve = 1.0,
Shinya Kitaoka 120a6e
    const int zanzo_length = 0.0, const double zanzo_power = 1.0,
Shinya Kitaoka 120a6e
    const bool alpha_rend_sw = true);
Toshihiro Shimizu 890ddd
}
Toshihiro Shimizu 890ddd
}
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#endif /* !igs_motion_blur_h */