summaryrefslogtreecommitdiff
path: root/tree/image.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-03-30 08:30:22 +0200
committerTor Andersson <tor@ghostscript.com>2005-03-30 08:30:22 +0200
commitee154f16bd09a43359967f7e7b86c3677c09461d (patch)
tree08896cfa9ff55e05bfe7855965c620d45115d4d5 /tree/image.c
parent460ad7040d67a4a93a153f98095ff952a2b15d37 (diff)
downloadmupdf-ee154f16bd09a43359967f7e7b86c3677c09461d.tar.xz
rename part 1 -- files
Diffstat (limited to 'tree/image.c')
-rw-r--r--tree/image.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/tree/image.c b/tree/image.c
deleted file mode 100644
index dbeb1fd8..00000000
--- a/tree/image.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <fitz.h>
-
-fz_image *
-fz_keepimage(fz_image *image)
-{
- image->refs ++;
- return image;
-}
-
-void
-fz_dropimage(fz_image *image)
-{
- if (--image->refs == 0)
- {
- if (image->drop)
- image->drop(image);
- if (image->cs)
- fz_dropcolorspace(image->cs);
- fz_free(image);
- }
-}
-