From 39ea685edb71786b515511e4fb3c09c119282646 Mon Sep 17 00:00:00 2001
From: Hermet Park
Date: Thu, 5 Nov 2020 14:43:32 +0900
Subject: [PATCH] Update README.md
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a3f2603c..550e57d6 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
-ThorVG is a platform independent lightweight standalone C++ library for drawing vector-based shapes and SVG.
+ThorVG is a platform-independent portable library for drawing vector-based shapes and images. It's written in C++, no dependencies and keeps super compact size.
The next list shows drawing primitives ThorVG providing.
- Paints: Line, Arc, Curve, Path, Shapes, Polygons
@@ -20,6 +20,7 @@ The next list shows drawing primitives ThorVG providing.
+Basically your program could use this library functions by calling slick and neat apis while switching drawing context (if you have your own drawing engine), ThorVG serializes drawing commands among volatile paints node, performs sync/asynchronous rendering by its decent engines. The engine is suggested to immediate rendering method so that your system could adaptively integrate with it. ThorVG supports vector images such as SVG, also will support coming popular formats by demands. On rendering, it might introduce intermediate frame buffers for compositing vector scenes but only when it's necessary and these are temporarily used for saving memory.
Next figure shows you a brief strategy how to use ThorVG in your system.