Home | History | Annotate | Download | only in pshinter

Lines Matching refs:flags2

144 #define psh_point_is_strong( p )    ( (p)->flags2 & PSH_POINT_STRONG )
145 #define psh_point_is_fitted( p ) ( (p)->flags2 & PSH_POINT_FITTED )
146 #define psh_point_is_extremum( p ) ( (p)->flags2 & PSH_POINT_EXTREMUM )
147 #define psh_point_is_positive( p ) ( (p)->flags2 & PSH_POINT_POSITIVE )
148 #define psh_point_is_negative( p ) ( (p)->flags2 & PSH_POINT_NEGATIVE )
149 #define psh_point_is_edge_min( p ) ( (p)->flags2 & PSH_POINT_EDGE_MIN )
150 #define psh_point_is_edge_max( p ) ( (p)->flags2 & PSH_POINT_EDGE_MAX )
152 #define psh_point_set_strong( p ) (p)->flags2 |= PSH_POINT_STRONG
153 #define psh_point_set_fitted( p ) (p)->flags2 |= PSH_POINT_FITTED
154 #define psh_point_set_extremum( p ) (p)->flags2 |= PSH_POINT_EXTREMUM
155 #define psh_point_set_positive( p ) (p)->flags2 |= PSH_POINT_POSITIVE
156 #define psh_point_set_negative( p ) (p)->flags2 |= PSH_POINT_NEGATIVE
157 #define psh_point_set_edge_min( p ) (p)->flags2 |= PSH_POINT_EDGE_MIN
158 #define psh_point_set_edge_max( p ) (p)->flags2 |= PSH_POINT_EDGE_MAX
167 FT_UInt flags2;