summaryrefslogtreecommitdiff
path: root/cocoa/apple_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/apple_image.h')
-rw-r--r--cocoa/apple_image.h30
1 files changed, 7 insertions, 23 deletions
diff --git a/cocoa/apple_image.h b/cocoa/apple_image.h
index 1611cf52a..5d329c1c5 100644
--- a/cocoa/apple_image.h
+++ b/cocoa/apple_image.h
@@ -20,34 +20,18 @@
#ifndef _NETSURF_COCOA_APPLE_IMAGE_H_
#define _NETSURF_COCOA_APPLE_IMAGE_H_
-#ifdef WITH_APPLE_IMAGE
-
-#ifdef WITH_JPEG
-#error "Don't define WITH_JPEG and WITH_APPLE_IMAGE"
-#endif
-
#include "utils/config.h"
-#include "desktop/plot_style.h"
-
-struct bitmap;
-struct content;
-struct rect;
+#include "utils/errors.h"
-struct content_apple_image_data {
-};
+#ifdef WITH_APPLE_IMAGE
-bool apple_image_convert(struct content *c);
-void apple_image_destroy(struct content *c);
+nserror apple_image_init(void);
+void apple_image_fini(void);
-bool apple_image_redraw(struct content *c, int x, int y,
- int width, int height, const struct rect *clip,
- float scale, colour background_colour);
-bool apple_image_redraw_tiled(struct content *c, int x, int y,
- int width, int height, const struct rect *clip,
- float scale, colour background_colour,
- bool repeat_x, bool repeat_y);
+#else
-bool apple_image_clone(const struct content *old, struct content *new_content);
+#define apple_image_init() NSERROR_OK
+#define apple_image_fini() ((void) 0)
#endif /* WITH_APPLE_IMAGE */