aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/include/cbgfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/libpayload/include/cbgfx.h')
-rw-r--r--payloads/libpayload/include/cbgfx.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/payloads/libpayload/include/cbgfx.h b/payloads/libpayload/include/cbgfx.h
index cffc7fd7a6..3276867cb2 100644
--- a/payloads/libpayload/include/cbgfx.h
+++ b/payloads/libpayload/include/cbgfx.h
@@ -115,6 +115,25 @@ struct rgb_color {
int draw_box(const struct rect *box, const struct rgb_color *rgb);
/**
+ * Draw a box with rounded corners on screen.
+ *
+ * @param[in] pos_rel Coordinate of the top left corner of the box relative to
+ * the canvas.
+ * @param[in] dim_rel Width and height of the image relative to the canvas.
+ * @param[in] rgb Color of the border of the box.
+ * @param[in] thickness Thickness of the border relative to the canvas. If zero
+ * is given, the box will be filled with the rgb color.
+ * @param[in] radius Radius of the rounded corners relative to the canvas. A
+ * zero value indicates sharp corners will be drawn.
+ *
+ * @return CBGFX_* error codes
+ */
+int draw_rounded_box(const struct scale *pos_rel, const struct scale *dim_rel,
+ const struct rgb_color *rgb,
+ const struct fraction *thickness,
+ const struct fraction *radius);
+
+/**
* Clear the canvas
*/
int clear_canvas(const struct rgb_color *rgb);