/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/text_renderer.h

  • Committer: Tim Marston
  • Date: 2012-03-10 13:04:29 UTC
  • Revision ID: tim@ed.am-20120310130429-310w5ejo968mc6mo
cleaned-up notes

Show diffs side-by-side

added added

removed removed

58
58
         */
59
59
        void reset_buffer();
60
60
 
61
 
 
62
 
        /**
63
 
         * Notify renderer that the output buffer will require rendering.
64
 
         */
65
 
        void buffer_in_use();
66
 
 
67
 
 
68
61
        /**
69
62
         * Output the output buffer (and reset the output buffer).
70
63
         */
71
64
        void output_buffer();
72
65
 
73
66
        /**
74
 
         * Get the font number in use.
 
67
         * Set the font number to use
75
68
         *
76
 
         * @return font number
77
 
         */
78
 
        int get_font();
79
 
 
80
 
        /**
81
 
         * Switch to the next font.
82
 
         */
83
 
        void inc_font();
 
69
         * @param font_num font number
 
70
         */
 
71
        void select_font( int font_num );
84
72
 
85
73
};
86
74