------------------------------------------------------------------------------
| 1725 | |
| 1726 | //------------------------------------------------------------------------------ |
| 1727 | void vtkPDFContextDevice2D::Fill(bool stroke) |
| 1728 | { |
| 1729 | if (this->IsInTexturedFill) |
| 1730 | { |
| 1731 | this->FillTexture(); |
| 1732 | return; |
| 1733 | } |
| 1734 | |
| 1735 | if (stroke) |
| 1736 | { |
| 1737 | HPDF_Page_FillStroke(this->Impl->Page); |
| 1738 | } |
| 1739 | else |
| 1740 | { |
| 1741 | HPDF_Page_Fill(this->Impl->Page); |
| 1742 | } |
| 1743 | } |
| 1744 | |
| 1745 | //------------------------------------------------------------------------------ |
| 1746 | void vtkPDFContextDevice2D::FillEvenOdd(bool stroke) |
no test coverage detected