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>2014-01-12 15:27:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-12 15:27:55 +0400
commitfc39e895e945d5125ede6b6a5157f1160eec1fc5 (patch)
tree27bc75b46ae0a58ea8cec0025901a53bbc5fd715 /source/blender/imbuf/intern/rectop.c
parent62aa004c25572fceb44ffdff37dd20119b81ca02 (diff)
Style Cleanup: whitespace
Diffstat (limited to 'source/blender/imbuf/intern/rectop.c')
-rw-r--r--source/blender/imbuf/intern/rectop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/rectop.c b/source/blender/imbuf/intern/rectop.c
index 16268b19b1a..6df7587ee5c 100644
--- a/source/blender/imbuf/intern/rectop.c
+++ b/source/blender/imbuf/intern/rectop.c
@@ -321,7 +321,7 @@ void IMB_rectblend(ImBuf *dbuf, ImBuf *obuf, ImBuf *sbuf, unsigned short *dmask,
drf = drectf;
srf = srectf;
for (x = width; x > 0; x--, drf += 4, srf += 4) {
- float map_alpha = (srf[3] == 0.0f)? drf[3] : drf[3] / srf[3];
+ float map_alpha = (srf[3] == 0.0f) ? drf[3] : drf[3] / srf[3];
drf[0] = srf[0] * map_alpha;
drf[1] = srf[1] * map_alpha;