diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-28 10:46:37 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-12-28 10:46:37 +1100 |
commit | 81dfda9ea0a4049d141d6af9534255ee4611de8a (patch) | |
tree | 68c32504c0488b529327303a9d4a92dd50f97dda /source/core | |
parent | 10edbdc399a52958f59ee0d8b9cc216a1bcb1441 (diff) |
Update StarImageProcessing.cpp
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarImageProcessing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarImageProcessing.cpp b/source/core/StarImageProcessing.cpp index d599c2c..983ec4e 100644 --- a/source/core/StarImageProcessing.cpp +++ b/source/core/StarImageProcessing.cpp @@ -26,7 +26,7 @@ Image scaleNearest(Image const& srcImage, Vec2F const& scale) { } #pragma GCC push_options -#pragma GCC optimize("-fno-unsafe-math-optimizations") +#pragma GCC optimize("-O3") Image scaleBilinear(Image const& srcImage, Vec2F const& scale) { Vec2U srcSize = srcImage.size(); Vec2U destSize = Vec2U::round(vmult(Vec2F(srcSize), scale)); |