Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/core/StarImageScaling.hpp
blob: 6a7271b1e5ee9dcd448723b9c3f2b5c40ea77509 (plain)
1
2
3
4
5
6
7
8
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);

}