aboutsummaryrefslogtreecommitdiffstats
path: root/include/gwin/gwin.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-07-01 17:40:31 +0200
committerJoel Bodenmann <joel@unormal.org>2013-07-01 17:40:31 +0200
commit6e59a6cf6ca75bf3ca72649f3f57e03e3e321c36 (patch)
treed6e4095d68df5ca4b21959199a793007c3c7cef6 /include/gwin/gwin.h
parent4afd5ec74429232e4db96001ed89757b0ba55ee7 (diff)
downloaduGFX-6e59a6cf6ca75bf3ca72649f3f57e03e3e321c36.tar.gz
uGFX-6e59a6cf6ca75bf3ca72649f3f57e03e3e321c36.tar.bz2
uGFX-6e59a6cf6ca75bf3ca72649f3f57e03e3e321c36.zip
image widget first release
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r--include/gwin/gwin.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h
index b4be6a83..16ce9cf5 100644
--- a/include/gwin/gwin.h
+++ b/include/gwin/gwin.h
@@ -700,35 +700,6 @@ extern "C" {
void gwinFillConvexPoly(GHandle gh, coord_t tx, coord_t ty, const point *pntarray, unsigned cnt);
#endif
-/*-------------------------------------------------
- * Image functions
- *-------------------------------------------------*/
-
- #if GDISP_NEED_IMAGE || defined(__DOXYGEN__)
- /**
- * @brief Draw the image
- * @return GDISP_IMAGE_ERR_OK (0) on success or an error code.
- *
- * @param[in] gh The window handle
- * @param[in] img The image structure
- * @param[in] x,y The window location to draw the image
- * @param[in] cx,cy The area on the screen to draw
- * @param[in] sx,sy The image position to start drawing at
- *
- * @pre gdispImageOpen() must have returned successfully.
- *
- * @note If sx,sy + cx,cy is outside the image boundaries the area outside the image
- * is simply not drawn.
- * @note If @p gdispImageCache() has been called first for this frame, this routine will draw using a
- * fast blit from the cached frame. If not, it reads the input and decodes it as it
- * is drawing. This may be significantly slower than if the image has been cached (but
- * uses a lot less RAM)
- *
- * @api
- */
- gdispImageError gwinImageDraw(GHandle gh, gdispImage *img, coord_t x, coord_t y, coord_t cx, coord_t cy, coord_t sx, coord_t sy);
- #endif
-
#ifdef __cplusplus
}
#endif