| #pragma once |
| |
| #ifndef igs_maxmin_h |
| #define igs_maxmin_h |
| |
| #ifndef IGS_MAXMIN_EXPORT |
| #define IGS_MAXMIN_EXPORT |
| #endif |
| |
| namespace igs { |
| namespace maxmin { |
| IGS_MAXMIN_EXPORT void convert( |
| |
| const unsigned char *inn, unsigned char *out |
| |
| |
| , |
| const int height, const int width, const int channels, const int bits |
| |
| |
| , |
| const unsigned char *ref |
| , |
| const int ref_bits |
| , |
| const int ref_mode |
| |
| |
| , |
| const double radius |
| , |
| const double smooth_outer_range |
| |
| |
| |
| |
| |
| , |
| const int polygon_number |
| |
| |
| |
| |
| , |
| const double roll_degree |
| |
| |
| |
| |
| , |
| const bool min_sw |
| |
| |
| |
| , |
| const bool alpha_rendering_sw |
| |
| |
| |
| , |
| const bool add_blend_sw |
| |
| |
| |
| |
| |
| |
| , |
| const int number_of_thread |
| ); |
| } |
| } |
| |
| #endif |