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/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