| 194 | } |
| 195 | |
| 196 | void |
| 197 | BitmapRenderer::render_texts (lay::CanvasPlane &plane) |
| 198 | { |
| 199 | lay::Bitmap *bitmap = static_cast<lay::Bitmap *> (&plane); |
| 200 | for (std::vector<lay::RenderText>::const_iterator t = m_texts.begin (); t != m_texts.end (); ++t) { |
| 201 | bitmap->render_text (*t); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | BitmapRenderer::render_vertices (lay::CanvasPlane &plane, int mode) |
nothing calls this directly
no test coverage detected