------------------------------------------------------------------------
| 1550 | |
| 1551 | //------------------------------------------------------------------------ |
| 1552 | void Agg2D::render(bool fillColor) |
| 1553 | { |
| 1554 | if(m_blendMode == BlendAlpha) |
| 1555 | { |
| 1556 | Agg2DRenderer::render(*this, m_renBase, m_renSolid, fillColor); |
| 1557 | } |
| 1558 | else |
| 1559 | { |
| 1560 | Agg2DRenderer::render(*this, m_renBaseComp, m_renSolidComp, fillColor); |
| 1561 | } |
| 1562 | } |
| 1563 | |
| 1564 | #ifdef AGG_USE_FONTS |
| 1565 | //------------------------------------------------------------------------ |
no outgoing calls
no test coverage detected