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>2012-11-07 05:02:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-07 05:02:28 +0400
commit852a41fb0e314b70c2594150f7b0eb01daad1718 (patch)
treeecf9e4f430fd85c50da63beda1a11a570b6cf368 /source/blender/imbuf
parent5cf9d5e4ca28c01420adbceae0e9989651754470 (diff)
style cleanup, also remove redundant call to set_listbasepointers in free_main().
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/colormanagement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/colormanagement.c b/source/blender/imbuf/intern/colormanagement.c
index 6581987aed7..aadf547260d 100644
--- a/source/blender/imbuf/intern/colormanagement.c
+++ b/source/blender/imbuf/intern/colormanagement.c
@@ -2385,7 +2385,7 @@ void IMB_partial_display_buffer_update(ImBuf *ibuf, const float *linear_buffer,
const ColorManagedDisplaySettings *display_settings,
int xmin, int ymin, int xmax, int ymax, int update_orig_byte_buffer)
{
- if ((ibuf->rect && ibuf->rect_float) || update_orig_byte_buffer) {
+ if ((ibuf->rect && ibuf->rect_float) || update_orig_byte_buffer) {
/* update byte buffer created by legacy color management */
unsigned char *rect = (unsigned char *) ibuf->rect;