From fc0c0f05fcb8f81510fc0964a3e0c6c32b377248 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sat, 7 Dec 2019 00:54:55 -0700 Subject: [PATCH] made the drawn pattern a little fancier --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index b945f95..459ae84 100644 --- a/src/main.c +++ b/src/main.c @@ -18,6 +18,9 @@ static void do_draw(void) Fb_filled_rectangle(10, 60, 50, 100, FBPRIMCLR_CYAN, FALSE); Fb_filled_rectangle(60, 60, 100, 100, FBPRIMCLR_MAGENTA, FALSE); Fb_filled_rectangle(110, 60, 150, 100, FBPRIMCLR_YELLOW, FALSE); + Fb_rectangle(10, 110, 150, 150, PBPRIMCLR_WHITE, FALSE); + Fb_line(10, 110, 150, 150, FBPRIMCLR_WHITE, FALSE); + Fb_line(10, 150, 150, 110, FBPRIMCLR_WHITE, FALSE); } static void log_touch(const char *event, UINT_PTR x, UINT_PTR y)