aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@embedded.pro>2017-08-27 13:43:49 +0200
committerJoel Bodenmann <joel@embedded.pro>2017-08-27 13:43:49 +0200
commitf9494c44a2406b4b7dd753076f1dfc8380e19500 (patch)
tree2ee9edb06e866d5318dd7d0278647dbd7c0c6c71 /src/gdisp
parentc18bc690b08cc64bed234272a6ce5ebe0233d033 (diff)
downloaduGFX-f9494c44a2406b4b7dd753076f1dfc8380e19500.tar.gz
uGFX-f9494c44a2406b4b7dd753076f1dfc8380e19500.tar.bz2
uGFX-f9494c44a2406b4b7dd753076f1dfc8380e19500.zip
Improving gdispPixmapCreate() documentation
Diffstat (limited to 'src/gdisp')
-rw-r--r--src/gdisp/gdisp_pixmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdisp/gdisp_pixmap.h b/src/gdisp/gdisp_pixmap.h
index 2e3df5cc..a8024772 100644
--- a/src/gdisp/gdisp_pixmap.h
+++ b/src/gdisp/gdisp_pixmap.h
@@ -34,7 +34,7 @@ extern "C" {
* @param[in] width The width of the pixmap to be created
* @param[in] height The height of the pixmap to be created
*
- * @return The created GDisplay representing the pixmap
+ * @return The created GDisplay representing the pixmap or 0 if the pixmap couldn't be created.
*
* @note Once created, an off-screen pixmap can be drawn on using the standard gdispGxxxx calls.
* @note It must be destroyed using @p gdispDeleteOffscreenPixmap
@@ -81,7 +81,7 @@ extern "C" {
*/
void *gdispPixmapGetMemoryImage(GDisplay *g);
#endif
-
+
#ifdef __cplusplus
}
#endif