| #ifndef igs_line_blur_h |
| #define igs_line_blur_h |
| |
| #ifndef IGS_LINE_BLUR_EXPORT |
| #define IGS_LINE_BLUR_EXPORT |
| #endif |
| |
| namespace igs { |
| namespace line_blur { |
| IGS_LINE_BLUR_EXPORT void convert( |
| |
| const void *in, |
| void *out, |
| const int height, |
| const int width, |
| const int in_wrap, const int out_wrap, const int channels, const int bits, |
| |
| const int b_blur_count, |
| const double b_blur_power, |
| const int b_subpixel, |
| const int b_blur_near_ref, |
| const int b_blur_near_len, |
| const int b_smudge_thick, |
| const double b_smudge_remain, |
| |
| const int v_smooth_retry, |
| const int v_near_ref, |
| const int v_near_len, |
| const bool mv_sw, |
| const bool pv_sw, |
| const bool cv_sw, |
| const long reference_channel, |
| const bool debug_save_sw, |
| const int brush_action |
| ); |
| } |
| } |
| |
| #endif |