Skip to content
Snippets Groups Projects
Commit 323c3e67 authored by Mathieu Westphal (Kitware)'s avatar Mathieu Westphal (Kitware) :zap:
Browse files

Warnings: Fix an oveloaded-virtual warning in vtkPDFContextDevice2D.h

parent b96c3b9e
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,9 @@ public:
void SetRenderer(vtkRenderer*);
using vtkContextDevice2D::DrawMarkers;
using vtkContextDevice2D::DrawPoints;
using vtkContextDevice2D::DrawPointSprites;
void DrawPoly(float* points, int n, unsigned char* colors = nullptr, int nc_comps = 0) override;
void DrawLines(float* f, int n, unsigned char* colors = nullptr, int nc_comps = 0) override;
void DrawPoints(float* points, int n, unsigned char* colors = nullptr, int nc_comps = 0) override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment