diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-28 00:42:38 +0100 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-10-28 09:52:09 +1000 |
commit | 36c55722ddc06af682d7c7bdeb71ba75a3b0fb83 (patch) | |
tree | 2a68e9b62467b121d049d08ff2cd325de0361466 /demos/modules/gdisp/gdisp_fonts_cyrillic/main.c | |
parent | 4b76efce1d2676333606d4fd08f34ace33824312 (diff) | |
download | uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.tar.gz uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.tar.bz2 uGFX-36c55722ddc06af682d7c7bdeb71ba75a3b0fb83.zip |
updated GDISP and GWIN demos
Diffstat (limited to 'demos/modules/gdisp/gdisp_fonts_cyrillic/main.c')
-rw-r--r-- | demos/modules/gdisp/gdisp_fonts_cyrillic/main.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c b/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c deleted file mode 100644 index dd39a5d5..00000000 --- a/demos/modules/gdisp/gdisp_fonts_cyrillic/main.c +++ /dev/null @@ -1,20 +0,0 @@ -#include "gfx.h"
-
-int main(void) {
- font_t font1;
-
- // Initialize uGFX and the underlying system
- gfxInit();
-
- // Get the fonts we want to use
- font1 = gdispOpenFont("Archangelsk Regular 12");
-
- // Demonstrate our other fonts
- gdispDrawString(10, 10, "привет мир", font1, Yellow);
-
- // Wait forever
- while(TRUE) {
- gfxSleepMilliseconds(500);
- }
-}
-
|