| 75 | } |
| 76 | |
| 77 | void |
| 78 | BitmapRenderer::draw (const db::DBox &box, const std::string &text, db::Font font, db::HAlign halign, db::VAlign valign, db::DFTrans trans, |
| 79 | lay::CanvasPlane * /*fill*/, lay::CanvasPlane * /*frame*/, lay::CanvasPlane * /*vertices*/, lay::CanvasPlane *texts) |
| 80 | { |
| 81 | clear (); |
| 82 | insert (box, text, font, halign, valign, trans); |
| 83 | if (texts) { |
| 84 | render_texts (*texts); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | void |
| 89 | BitmapRenderer::insert (const db::Box &b, const db::CplxTrans &t) |
nothing calls this directly
no test coverage detected