Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-12-16 03:38:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-16 03:38:08 +0300
commit807efa8538c502a0017c48029ff8f0805ceea2a6 (patch)
tree163dda946fedb31eea098fdbfe8175497b7ee6de /source/blender/imbuf
parent366ec5f0f8f9485685f476ec65a7104e2e1d5d6f (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/transform.cc11
1 files changed, 2 insertions, 9 deletions
diff --git a/source/blender/imbuf/intern/transform.cc b/source/blender/imbuf/intern/transform.cc
index 82c8747d28d..3e071a9e4d7 100644
--- a/source/blender/imbuf/intern/transform.cc
+++ b/source/blender/imbuf/intern/transform.cc
@@ -322,15 +322,8 @@ class Sampler {
}
else if constexpr (Filter == IMB_FILTER_BILINEAR && std::is_same_v<StorageType, float>) {
if constexpr (std::is_same_v<UVWrapping, WrapRepeatUV>) {
- BLI_bilinear_interpolation_wrap_fl(source->rect_float,
- &r_sample[0],
- source->x,
- source->y,
- NumChannels,
- u,
- v,
- true,
- true);
+ BLI_bilinear_interpolation_wrap_fl(
+ source->rect_float, &r_sample[0], source->x, source->y, NumChannels, u, v, true, true);
}
else {
BLI_bilinear_interpolation_fl(source->rect_float,