summaryrefslogtreecommitdiff
path: root/windows/bitmap.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-04 15:29:09 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-04 15:29:09 +0100
commit4a4a442e6cd0a4f9eecd1608bc4fff7cf3cec7a0 (patch)
tree64f4f61ec2c9a80ac4e5c14c7af1391780c451d1 /windows/bitmap.h
parent976e4f8973eea4b2b9904488ef92b66fc332521e (diff)
downloadnetsurf-4a4a442e6cd0a4f9eecd1608bc4fff7cf3cec7a0.tar.gz
netsurf-4a4a442e6cd0a4f9eecd1608bc4fff7cf3cec7a0.tar.bz2
remove unused windows pretile code and plotter API use
Diffstat (limited to 'windows/bitmap.h')
-rw-r--r--windows/bitmap.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/windows/bitmap.h b/windows/bitmap.h
index 434c5e992..c723159e1 100644
--- a/windows/bitmap.h
+++ b/windows/bitmap.h
@@ -20,8 +20,6 @@
#ifndef _NETSURF_WINDOWS_BITMAP_H_
#define _NETSURF_WINDOWS_BITMAP_H_
-#include "desktop/plotters.h"
-
struct gui_bitmap_table *win32_bitmap_table;
struct bitmap {
@@ -34,10 +32,9 @@ struct bitmap {
};
struct bitmap *bitmap_scale(struct bitmap *prescale, int width, int height);
-struct bitmap *bitmap_pretile(struct bitmap *untiled, int width, int height,
- bitmap_flags_t flags);
void *win32_bitmap_create(int width, int height, unsigned int state);
+
void win32_bitmap_destroy(void *bitmap);
#endif