summaryrefslogtreecommitdiff
path: root/navit/graphics.h
diff options
context:
space:
mode:
authorsleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2015-03-08 22:53:58 +0000
committersleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2015-03-08 22:53:58 +0000
commitd36fc3e5e33eec943dfed7b76bf43dfdb1f44412 (patch)
treeb8cb94de37a5a103c600812c749acafcd886ae0d /navit/graphics.h
parent7678fbde54f2d0302f5283203bc541dd3108f5ba (diff)
downloadnavit-svn-d36fc3e5e33eec943dfed7b76bf43dfdb1f44412.tar.gz
Refactor:core:Remove unused graphics method graphics_gc_set_stipple.
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@6023 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/graphics.h')
-rw-r--r--navit/graphics.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/navit/graphics.h b/navit/graphics.h
index d41c31f7..f1e782f0 100644
--- a/navit/graphics.h
+++ b/navit/graphics.h
@@ -99,7 +99,6 @@ struct graphics_gc_methods {
void (*gc_set_dashes)(struct graphics_gc_priv *gc, int width, int offset, unsigned char dash_list[], int n);
void (*gc_set_foreground)(struct graphics_gc_priv *gc, struct color *c);
void (*gc_set_background)(struct graphics_gc_priv *gc, struct color *c);
- void (*gc_set_stipple)(struct graphics_gc_priv *gc, struct graphics_image_priv *img);
};
struct graphics_gc {
@@ -166,7 +165,6 @@ struct graphics_gc *graphics_gc_new(struct graphics *gra);
void graphics_gc_destroy(struct graphics_gc *gc);
void graphics_gc_set_foreground(struct graphics_gc *gc, struct color *c);
void graphics_gc_set_background(struct graphics_gc *gc, struct color *c);
-void graphics_gc_set_stipple(struct graphics_gc *gc, struct graphics_image *img);
void graphics_gc_set_linewidth(struct graphics_gc *gc, int width);
void graphics_gc_set_dashes(struct graphics_gc *gc, int width, int offset, unsigned char dash_list[], int n);
struct graphics_image *graphics_image_new_scaled(struct graphics *gra, char *path, int w, int h);