summaryrefslogtreecommitdiff
path: root/core/src/fxge/agg/agg23/agg_curves.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/fxge/agg/agg23/agg_curves.h')
-rw-r--r--core/src/fxge/agg/agg23/agg_curves.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/fxge/agg/agg23/agg_curves.h b/core/src/fxge/agg/agg23/agg_curves.h
index 5719cbf508..61270e64a5 100644
--- a/core/src/fxge/agg/agg23/agg_curves.h
+++ b/core/src/fxge/agg/agg23/agg_curves.h
@@ -63,14 +63,12 @@ class curve4_div : public CFX_Object
{
public:
curve4_div() :
- m_cusp_limit(0),
m_count(0)
{}
curve4_div(FX_FLOAT x1, FX_FLOAT y1,
FX_FLOAT x2, FX_FLOAT y2,
FX_FLOAT x3, FX_FLOAT y3,
FX_FLOAT x4, FX_FLOAT y4) :
- m_cusp_limit(0),
m_count(0)
{
init(x1, y1, x2, y2, x3, y3, x4, y4);
@@ -134,7 +132,6 @@ private:
unsigned level);
FX_FLOAT m_distance_tolerance_square;
FX_FLOAT m_distance_tolerance_manhattan;
- FX_FLOAT m_cusp_limit;
unsigned m_count;
pod_deque<point_type> m_points;
};