comparison Core/ImageFormats/Font.h @ 1611:5e9b2aac8b89

fix for visual studio
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 04 Sep 2015 16:30:42 +0200
parents 2dff2bdffdb8
children
comparison
equal deleted inserted replaced
1610:2dff2bdffdb8 1611:5e9b2aac8b89
86 unsigned int GetSize() const 86 unsigned int GetSize() const
87 { 87 {
88 return size_; 88 return size_;
89 } 89 }
90 90
91 void DrawText(ImageAccessor& target, 91 void Draw(ImageAccessor& target,
92 const std::string& utf8, 92 const std::string& utf8,
93 int x, 93 int x,
94 int y, 94 int y,
95 uint8_t grayscale) const; 95 uint8_t grayscale) const;
96 96
97 void DrawText(ImageAccessor& target, 97 void Draw(ImageAccessor& target,
98 const std::string& utf8, 98 const std::string& utf8,
99 int x, 99 int x,
100 int y, 100 int y,
101 uint8_t r, 101 uint8_t r,
102 uint8_t g, 102 uint8_t g,
103 uint8_t b) const; 103 uint8_t b) const;
104 }; 104 };
105 } 105 }