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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-14 15:42:05 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-14 15:42:05 +0400
commitc849928d1c2572e6b3b2290223d72d7d180491e2 (patch)
tree42367679d31f8c7d1457f613a37346fa95ba47f2 /source/blender/imbuf/intern/filetype.c
parente762797af5fb6b903cc255fd746c7ac4b7687dd1 (diff)
Code cleanup: removed unused Cocoa image load/save code.
Diffstat (limited to 'source/blender/imbuf/intern/filetype.c')
-rw-r--r--source/blender/imbuf/intern/filetype.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/imbuf/intern/filetype.c b/source/blender/imbuf/intern/filetype.c
index 900bc7756f0..d67de3be68b 100644
--- a/source/blender/imbuf/intern/filetype.c
+++ b/source/blender/imbuf/intern/filetype.c
@@ -48,12 +48,6 @@ static int imb_ftype_default(ImFileType *type, ImBuf *ibuf)
{
return (ibuf->ftype & type->filetype);
}
-#if defined(__APPLE__) && defined(IMBUF_COCOA)
-static int imb_ftype_cocoa(ImFileType *type, ImBuf *ibuf)
-{
- return (ibuf->ftype & TIF);
-}
-#endif
static int imb_ftype_iris(ImFileType *type, ImBuf *ibuf)
{
(void)type;
@@ -83,8 +77,6 @@ ImFileType IMB_FILE_TYPES[] = {
#endif
#ifdef WITH_TIFF
{imb_inittiff, NULL, imb_is_a_tiff, imb_ftype_default, imb_loadtiff, imb_savetiff, imb_loadtiletiff, 0, TIF},
-#elif defined(__APPLE__) && defined(IMBUF_COCOA)
- {NULL, NULL, imb_is_a_cocoa, imb_ftype_cocoa, imb_imb_cocoaLoadImage, imb_savecocoa, NULL, 0, TIF},
#endif
#ifdef WITH_HDR
{NULL, NULL, imb_is_a_hdr, imb_ftype_default, imb_loadhdr, imb_savehdr, NULL, IM_FTYPE_FLOAT, RADHDR},