blob: d75816975999a931f9cefbbcaf6206f2169e405e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|