本文整理汇总了C++中renderer::draw方法的典型用法代码示例。如果您正苦于以下问题:C++ renderer::draw方法的具体用法?C++ renderer::draw怎么用?C++ renderer::draw使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类renderer
的用法示例。
在下文中一共展示了renderer::draw方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
void
poor_distorted_font_rep::draw_fixed (renderer ren, string s,
SI x, SI y, SI* xpos) {
int i=0;
while (i < N(s)) {
int start= i;
base->advance_glyph (s, i);
string ss= s (start, i);
font_metric fnm;
font_glyphs fng;
int c= index_glyph (ss, fnm, fng);
if (c >= 0) ren->draw (c, fng, start==0? x: x + xpos[start], y);
}
}
示例2: while
void
poor_bbb_font_rep::draw_fixed (renderer ren, string s,
SI x, SI y, SI* xpos) {
int i=0;
while (i < N(s)) {
int start= i;
tm_char_forwards (s, i);
string ss= s (start, i);
font_metric fnm;
font_glyphs fng;
int c= index_glyph (ss, fnm, fng);
if (c >= 0) ren->draw (c, fng, start==0? x: x + xpos[start], y);
}
}
示例3: while
void
poor_stretched_font_rep::draw_fixed (renderer ren, string s,
SI x, SI y, SI* xpos) {
int i=0;
while (i < N(s)) {
int start= i;
base->advance_glyph (s, i);
string ss= s (start, i);
font_metric fnm;
font_glyphs fng;
int c= index_glyph (ss, fnm, fng);
//cout << "Drawing " << ss << ", " << c
// << " at " << (xpos[start]/PIXEL) << "\n";
//cout << fng->get (c) << "\n\n";
if (c >= 0) ren->draw (c, fng, start==0? x: x + xpos[start], y);
}
}