diff options
Diffstat (limited to 'source/core/StarImageScaling.hpp')
-rw-r--r-- | source/core/StarImageScaling.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/core/StarImageScaling.hpp b/source/core/StarImageScaling.hpp new file mode 100644 index 0000000..6a7271b --- /dev/null +++ b/source/core/StarImageScaling.hpp @@ -0,0 +1,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); + +}
\ No newline at end of file |