Remove ABS in favor of Math::abs
This commit is contained in:
@ -799,7 +799,7 @@ Image::Format Image::get_format() const {
|
||||
}
|
||||
|
||||
static double _bicubic_interp_kernel(double x) {
|
||||
x = ABS(x);
|
||||
x = Math::abs(x);
|
||||
|
||||
double bc = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user