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:
Diffstat (limited to 'source/blender/blenkernel/intern/colortools.c')
-rw-r--r--source/blender/blenkernel/intern/colortools.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/colortools.c b/source/blender/blenkernel/intern/colortools.c
index 6fb2df04b3c..09731c15c0a 100644
--- a/source/blender/blenkernel/intern/colortools.c
+++ b/source/blender/blenkernel/intern/colortools.c
@@ -1320,10 +1320,10 @@ void BKE_histogram_update_sample_line(Histogram *hist,
const float *fp;
unsigned char *cp;
- int x1 = 0.5f + hist->co[0][0] * ibuf->x;
- int x2 = 0.5f + hist->co[1][0] * ibuf->x;
- int y1 = 0.5f + hist->co[0][1] * ibuf->y;
- int y2 = 0.5f + hist->co[1][1] * ibuf->y;
+ int x1 = roundf(hist->co[0][0] * ibuf->x);
+ int x2 = roundf(hist->co[1][0] * ibuf->x);
+ int y1 = roundf(hist->co[0][1] * ibuf->y);
+ int y2 = roundf(hist->co[1][1] * ibuf->y);
struct ColormanageProcessor *cm_processor = NULL;