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/blenkernel/BKE_image.h
parent8992ed9cdd17b641801e14615800e0e3b5e7f464 (diff)
display quality for avijpeg, name BKE_imtype functions more sensibly
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index dae0821b27a..7233f9570f9 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -59,11 +59,11 @@ char BKE_ftype_to_imtype(const int ftype);
int BKE_imtype_to_ftype(char imtype);
int BKE_imtype_is_movie(const char imtype);
-int BKE_imtype_is_alpha_ok(const char imtype);
-int BKE_imtype_is_zbuf_ok(const char imtype);
-int BKE_imtype_is_compression_ok(const char imtype);
-int BKE_imtype_is_quality_ok(const char imtype);
-char BKE_imtype_is_depth_ok(const char imtype);
+int BKE_imtype_supports_alpha(const char imtype);
+int BKE_imtype_supports_zbuf(const char imtype);
+int BKE_imtype_supports_compress(const char imtype);
+int BKE_imtype_supports_quality(const char imtype);
+char BKE_imtype_valid_depths(const char imtype);
struct anim *openanim(const char *name, int flags, int streamindex);