------------------------------------------------------------------------
| 189 | |
| 190 | //------------------------------------------------------------------------ |
| 191 | void path_renderer::pop_attr() |
| 192 | { |
| 193 | if(m_attr_stack.size() == 0) |
| 194 | { |
| 195 | throw exception("pop_attr : Attribute stack is empty"); |
| 196 | } |
| 197 | m_attr_stack.remove_last(); |
| 198 | } |
| 199 | |
| 200 | //------------------------------------------------------------------------ |
| 201 | void path_renderer::fill(const rgba8& f) |
no test coverage detected