From 9b3b4b1c63096e763f870abdeb713858b68dfcc8 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 7 Nov 2023 16:58:12 +0900 Subject: [PATCH] example: renamed a sample, Svg2 -> DataLoad The sample actually intends to test Picture::load() with a data. --- src/examples/{Svg2.cpp => DataLoad.cpp} | 0 src/examples/meson.build | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/examples/{Svg2.cpp => DataLoad.cpp} (100%) diff --git a/src/examples/Svg2.cpp b/src/examples/DataLoad.cpp similarity index 100% rename from src/examples/Svg2.cpp rename to src/examples/DataLoad.cpp diff --git a/src/examples/meson.build b/src/examples/meson.build index 982de919..428fe1c9 100644 --- a/src/examples/meson.build +++ b/src/examples/meson.build @@ -12,6 +12,7 @@ source_file = [ 'Blending.cpp', 'ClipPath.cpp', 'CustomTransform.cpp', + 'DataLoad.cpp', 'DirectUpdate.cpp', 'Duplicate.cpp', 'FillRule.cpp', @@ -50,7 +51,6 @@ source_file = [ 'StrokeLine.cpp', 'StrokeMiterlimit.cpp', 'Svg.cpp', - 'Svg2.cpp', 'Texmap.cpp', 'Transform.cpp', 'Tvg.cpp',