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:
authorHans Goudey <h.goudey@me.com>2022-10-08 00:45:12 +0300
committerHans Goudey <h.goudey@me.com>2022-10-08 00:45:12 +0300
commit2ed302b5e13111b62b37cdd6a1d081e818f1574b (patch)
treecd0267ea3cb9256727143aa3f69dcc8742c523c2 /source/blender/render/intern
parent2c803124d371bbbd564dd4c5051258f53b799d36 (diff)
parentf3f0ea8dc27e457f61667eb24c476646c46ae0a9 (diff)
Merge branch 'master' into refactor-mesh-position-generic
Diffstat (limited to 'source/blender/render/intern')
-rw-r--r--source/blender/render/intern/texture_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/texture_image.c b/source/blender/render/intern/texture_image.c
index 38a569877c0..60a769348e8 100644
--- a/source/blender/render/intern/texture_image.c
+++ b/source/blender/render/intern/texture_image.c
@@ -889,7 +889,7 @@ static void alpha_clip_aniso(
/* TXF alpha: we're doing the same alpha-clip here as box-sample, but I'm doubting
* if this is actually correct for the all the filtering algorithms. */
- if (!(ELEM(extflag, TXC_REPT, TXC_EXTD))) {
+ if (!ELEM(extflag, TXC_REPT, TXC_EXTD)) {
rf.xmin = minx * (ibuf->x);
rf.xmax = maxx * (ibuf->x);
rf.ymin = miny * (ibuf->y);