Changeset 144 for cafu/trunk/Libs/Fonts/Font.hpp
- Timestamp:
- 09/01/10 17:07:59 (21 months ago)
- Files:
-
- 1 modified
-
cafu/trunk/Libs/Fonts/Font.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cafu/trunk/Libs/Fonts/Font.hpp
r136 r144 21 21 ================================================================================= 22 22 */ 23 24 /****************************/25 /*** MatSys Font (Header) ***/26 /****************************/27 23 28 24 #ifndef _MATSYS_FONT_HPP_ … … 55 51 56 52 /// Prints PrintString at (PosX, PosY) in color Color. 57 void Print(int PosX, int PosY, float FrameWidth, float FrameHeight, unsigned long Color, const char* PrintString, ...);53 void Print(int PosX, int PosY, float FrameWidth, float FrameHeight, unsigned long Color, const std::string& PrintString); 58 54 59 55 /// Accumulative printing functions. Faster if you have to call Print() a lot. 60 56 void AccPrintBegin(float FrameWidth, float FrameHeight); 61 void AccPrint(int PosX, int PosY, unsigned long Color, const char* PrintString, ...);57 void AccPrint(int PosX, int PosY, unsigned long Color, const std::string& PrintString); 62 58 void AccPrintEnd(); 63 59
