/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: edam
  • Date: 2012-02-29 21:56:32 UTC
  • Revision ID: edam@waxworlds.org-20120229215632-kypb9491vx7bicef
moved some stuf round, created a re-usable pool of message buffers, genericised "modes" for messages

Show diffs side-by-side

added added

removed removed

44
44
         * Draw a column of pixels at pixel-offset x in the message.
45
45
         *
46
46
         * @param message the message
47
 
         * @param message_len the length of the message (to save it being
48
 
         *              calculated)
 
47
         * @param message_len the length of the message (to save it being calculated)
49
48
         * @param x the pixel column of the message to draw
50
49
         * @param y_flip true to draw up-side down
51
50
         * @param y_shift shift the drawing up/down
63
62
         */
64
63
        void output_buffer();
65
64
 
66
 
        /**
67
 
         * Set the font number to use
68
 
         *
69
 
         * @param font_num font number
70
 
         */
71
 
        void select_font( int font_num );
72
 
 
73
65
};
74
66
 
75
67