* src/pshinter/pshalgo.h: Remove unused code.

This commit is contained in:
Alexei Podtelezhnikov 2013-01-02 20:31:56 -05:00
parent 7d6dc907d8
commit 50e634abe1
2 changed files with 5 additions and 10 deletions

View File

@ -1,3 +1,7 @@
2012-12-21 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/pshinter/pshalgo.h: Remove unused code.
2012-12-27 Werner Lemberg <wl@gnu.org>
* src/truetype/ttgload.c (tt_loader_init): Add more tracing.

View File

@ -4,7 +4,7 @@
/* */
/* PostScript hinting algorithm (specification). */
/* */
/* Copyright 2001, 2002, 2003, 2008 by */
/* Copyright 2001-2003, 2008, 2013 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@ -22,7 +22,6 @@
#include "pshrec.h"
#include "pshglob.h"
#include FT_TRIGONOMETRY_H
FT_BEGIN_HEADER
@ -168,8 +167,6 @@ FT_BEGIN_HEADER
FT_UInt flags2;
FT_Char dir_in;
FT_Char dir_out;
FT_Angle angle_in;
FT_Angle angle_out;
PSH_Hint hint;
FT_Pos org_u;
FT_Pos org_v;
@ -186,12 +183,6 @@ FT_BEGIN_HEADER
} PSH_PointRec;
#define PSH_POINT_EQUAL_ORG( a, b ) ( (a)->org_u == (b)->org_u && \
(a)->org_v == (b)->org_v )
#define PSH_POINT_ANGLE( a, b ) FT_Atan2( (b)->org_u - (a)->org_u, \
(b)->org_v - (a)->org_v )
typedef struct PSH_ContourRec_
{
PSH_Point start;