Reimplement path.has_current point as a 1-bit bitfield

This commit is contained in:
Carl Worth 2006-12-19 13:13:11 -08:00
parent 9d2d3b95e3
commit 7b1509f4f3

View file

@ -68,7 +68,7 @@ struct _cairo_path_fixed {
cairo_point_t last_move_point;
cairo_point_t current_point;
int has_current_point;
unsigned int has_current_point : 1;
};
#endif /* CAIRO_PATH_FIXED_PRIVATE_H */