aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-22 04:42:30 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-22 04:42:30 +0200
commitabca557bab206f118c32b4c99d17a70ff90a43ed (patch)
treef1b55efc7c17ab8786971d882e261590ef76cfb0 /src
parent2ad2bdf06e69e2eeaa20f9c6915092c02a67fc68 (diff)
downloaduGFX-abca557bab206f118c32b4c99d17a70ff90a43ed.tar.gz
uGFX-abca557bab206f118c32b4c99d17a70ff90a43ed.tar.bz2
uGFX-abca557bab206f118c32b4c99d17a70ff90a43ed.zip
removed a forgotted GDISP wrapper call in GWIN
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c
index f5d78ac6..16f06b0c 100644
--- a/src/gwin/gwin.c
+++ b/src/gwin/gwin.c
@@ -489,18 +489,6 @@ void gwinBlitArea(GHandle gh, coord_t x, coord_t y, coord_t cx, coord_t cy, coor
}
#endif
-#if GDISP_NEED_IMAGE
- gdispImageError gwinDrawImage(GHandle gh, gdispImage *img, coord_t x, coord_t y, coord_t cx, coord_t cy, coord_t sx, coord_t sy) {
- if (!((gh->flags & GWIN_FLG_VISIBLE)))
- return GDISP_IMAGE_ERR_OK;
-
- #if GDISP_NEED_CLIP
- gdispSetClip(gh->x, gh->y, gh->width, gh->height);
- #endif
- return gdispImageDraw(img, gh->x+x, gh->y+y, cx, cy, sx, sy);
- }
-#endif
-
#endif /* GFX_USE_GWIN */
/** @} */