diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-27 21:54:59 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-27 21:54:59 +1100 |
commit | 45c89cefb602471a9db232b9d80a75444081feac (patch) | |
tree | 7428dab6b557dcf2b1641792a75aee4230d93d69 /source/core/StarImageProcessing.hpp | |
parent | 8f1cadbbf2f0ad7b13f300bc50d039738e43352d (diff) |
Update StarImageProcessing.cpp
Diffstat (limited to 'source/core/StarImageProcessing.hpp')
-rw-r--r-- | source/core/StarImageProcessing.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/core/StarImageProcessing.hpp b/source/core/StarImageProcessing.hpp index 4022d38..8316d18 100644 --- a/source/core/StarImageProcessing.hpp +++ b/source/core/StarImageProcessing.hpp @@ -10,9 +10,9 @@ STAR_CLASS(Image); STAR_EXCEPTION(ImageOperationException, StarException); -Image scaleNearest(Image const& srcImage, Vec2F scale); -Image scaleBilinear(Image const& srcImage, Vec2F scale); -Image scaleBicubic(Image const& srcImage, Vec2F scale); +Image scaleNearest(Image const& srcImage, Vec2F const& scale); +Image scaleBilinear(Image const& srcImage, Vec2F const& scale); +Image scaleBicubic(Image const& srcImage, Vec2F const& scale); StringList colorDirectivesFromConfig(JsonArray const& directives); String paletteSwapDirectivesFromConfig(Json const& swaps); |