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>2011-11-22 04:06:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-22 04:06:54 +0400
commit6d6f1b0b4d32d3396be813cdba82830a9c95295a (patch)
tree78813cb6889c315286cd7de2443da02487021843 /source/blender/makesrna
parent8992ed9cdd17b641801e14615800e0e3b5e7f464 (diff)
display quality for avijpeg, name BKE_imtype functions more sensibly
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 8f6545a2f9f..4b3ef62e06e 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -615,13 +615,13 @@ static void rna_ImageFormatSettings_file_format_set(PointerRNA *ptr, int value)
imf->imtype= value;
/* ensure depth and color settings match */
- if (!BKE_imtype_is_alpha_ok(imf->imtype)) {
+ if (!BKE_imtype_supports_alpha(imf->imtype)) {
imf->planes= R_IMF_PLANES_RGB;
}
/* ensure usable depth */
{
- const int depth_ok= BKE_imtype_is_depth_ok(imf->imtype);
+ const int depth_ok= BKE_imtype_valid_depths(imf->imtype);
if ((imf->depth & depth_ok) == 0) {
/* set first available depth */
char depth_ls[]= {R_IMF_CHAN_DEPTH_32,
@@ -672,7 +672,7 @@ static EnumPropertyItem *rna_ImageFormatSettings_color_mode_itemf(bContext *C, P
{
ImageFormatData *imf= (ImageFormatData *)ptr->data;
- if ((imf == NULL) || BKE_imtype_is_alpha_ok(imf->imtype)) {
+ if ((imf == NULL) || BKE_imtype_supports_alpha(imf->imtype)) {
return image_color_mode_items;
}
else {
@@ -693,7 +693,7 @@ static EnumPropertyItem *rna_ImageFormatSettings_color_depth_itemf(bContext *C,
return image_color_depth_items;
}
else {
- const int depth_ok= BKE_imtype_is_depth_ok(imf->imtype);
+ const int depth_ok= BKE_imtype_valid_depths(imf->imtype);
const int is_float= ELEM3(imf->imtype, R_RADHDR, R_OPENEXR, R_MULTILAYER);
EnumPropertyItem *item_8bit= &image_color_depth_items[0];