From b83be48d14443dae566a22ffc9f8d655f227b1dd Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Tue, 13 Jan 2009 19:28:37 +0100 Subject: [PATCH] [CpmlPath] Renamed to CpmlSegment Cleaning the cpml API requires a strong differentiation between the cairo_path_t structure and any cpml object. I planned to work only on segments, not on whole paths, and the new CpmlSegment structure will not have an origin point, so a starting MOVE_TO is now a requirement. --- cpml/Makefile.am | 4 ++-- cpml/{cpml-path.c => cpml-segment.c} | 0 cpml/{cpml-path.h => cpml-segment.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename cpml/{cpml-path.c => cpml-segment.c} (100%) rename cpml/{cpml-path.h => cpml-segment.h} (100%) diff --git a/cpml/Makefile.am b/cpml/Makefile.am index 4ad239a8..97a85601 100644 --- a/cpml/Makefile.am +++ b/cpml/Makefile.am @@ -8,12 +8,12 @@ AM_LDFLAGS= @CAIRO_LIBS@ # file groups cpml_h_sources= cpml.h \ cpml-pair.h \ - cpml-path.h + cpml-segment.h cpml_built_h_sources= cpml_private_h_sources= cpml-alloca.h cpml_built_private_h_sources= cpml_c_sources= cpml-pair.c \ - cpml-path.c + cpml-segment.c cpml_built_c_sources= # targets diff --git a/cpml/cpml-path.c b/cpml/cpml-segment.c similarity index 100% rename from cpml/cpml-path.c rename to cpml/cpml-segment.c diff --git a/cpml/cpml-path.h b/cpml/cpml-segment.h similarity index 100% rename from cpml/cpml-path.h rename to cpml/cpml-segment.h -- 2.11.4.GIT