osb/source/core/StarImageScaling.hpp

10 lines
243 B
C++

#pragma once
namespace Star {
STAR_CLASS(Image);
Image scaleNearest(Image const& srcImage, Vec2F const& scale);
Image scaleBilinear(Image const& srcImage, Vec2F const& scale);
Image scaleBicubic(Image const& srcImage, Vec2F const& scale);
}