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-04-04 06:37:22 +0400
committerMatt Ebb <matt@mke3.net>2010-04-04 06:37:22 +0400
commit5de041c51f2a3d9969a8523c953157e69a0c8d24 (patch)
tree151c6e25292836dd81c27ed5007d241d0942f160 /source/blender/makesdna/DNA_color_types.h
parentf7977ab8ccb85b3c5d2a4a1221184d2174915c17 (diff)
Histogram and line sample can now be resized vertically
Diffstat (limited to 'source/blender/makesdna/DNA_color_types.h')
-rw-r--r--source/blender/makesdna/DNA_color_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_color_types.h b/source/blender/makesdna/DNA_color_types.h
index 5b4786c0be2..2a6dcfcb64e 100644
--- a/source/blender/makesdna/DNA_color_types.h
+++ b/source/blender/makesdna/DNA_color_types.h
@@ -97,8 +97,10 @@ typedef struct Histogram {
float data_g[256];
float data_b[256];
float xmax, ymax;
+ int height;
int ok;
int flag;
+ int pad;
} Histogram;
#endif