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>2013-05-01 06:53:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-01 06:53:45 +0400
commit950b4f5ec9250edc7e4a3bbb84a616e6cc3027bf (patch)
tree8d07a100e955de3d95bfaf36d54edc6c6c310282 /source/blender/blenkernel/intern/brush.c
parent77a0d70cdb006a97e82bb11843ef72edc784b250 (diff)
style cleanup
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-rw-r--r--source/blender/blenkernel/intern/brush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index feb6a961596..f69b11135c5 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -760,8 +760,8 @@ float BKE_brush_sample_masktex(const Scene *scene, Brush *br,
static void brush_imbuf_tex_co(rctf *mapping, int x, int y, float texco[3])
{
- texco[0] = mapping->xmin + x*mapping->xmax;
- texco[1] = mapping->ymin + y*mapping->ymax;
+ texco[0] = mapping->xmin + x * mapping->xmax;
+ texco[1] = mapping->ymin + y * mapping->ymax;
texco[2] = 0.0f;
}