Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SimpleGUI by
FastFontRenderer.h
00001 #ifndef SIMPLEGUI_FAST_FONT_RENDERER_H 00002 #define SIMPLEGUI_FAST_FONT_RENDERER_H 00003 00004 #include "FontRenderer.h" 00005 #include "FastFont.h" 00006 00007 class FastFontRenderer : public FontRenderer 00008 { 00009 00010 public: 00011 00012 FastFontRenderer(); 00013 00014 virtual void putc(const char c, GraphicsDisplay* display, Font* font); 00015 virtual void puts(const char* s, GraphicsDisplay* display, Font* font); 00016 // virtual void setFont(Font* font); 00017 00018 private: 00019 FastFont* _font; 00020 }; 00021 00022 #endif
Generated on Tue Jul 12 2022 22:27:14 by
