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:
authorMatt Ebb <matt@mke3.net>2010-01-28 10:26:21 +0300
committerMatt Ebb <matt@mke3.net>2010-01-28 10:26:21 +0300
commit9d0dbd707e2ccac6b11a6be4c19b9413f96cc3c0 (patch)
tree5bfd0a03e4f608dbb355b24b8ca973d4414df76e /source/blender/makesdna/DNA_color_types.h
parentb0989aac023b0c1b9cfc2e7cc1006c62e857275f (diff)
Fix [#20754] Histogram Not Updating, Showing Incorrect Levels, Colour Management on/off leads to Crash
Various internal fixes, also additional feature - can drag on the histogram to change scale (0 key to reset). Also fix [#20844] Color balance node (lift freeze)
Diffstat (limited to 'source/blender/makesdna/DNA_color_types.h')
-rw-r--r--source/blender/makesdna/DNA_color_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h
index 3094ab69ca2..f971a0a0480 100644
--- a/source/blender/makesdna/DNA_color_types.h
+++ b/source/blender/makesdna/DNA_color_types.h
@@ -83,12 +83,12 @@ typedef struct CurveMapping {
typedef struct Histogram {
int channels;
int x_resolution;
- float data_r[512];
- float data_g[512];
- float data_b[512];
- float min, max;
+ float data_r[256];
+ float data_g[256];
+ float data_b[256];
+ float xmax, ymax;
int ok;
- int pad;
+ int flag;
} Histogram;
#endif