Originally posted by cl333r
View Post
Blend2D Reaches Beta As High Performance 2D Vector Graphics Engine
Collapse
X
-
Originally posted by edgar444
No, no, horrible thing, rust everything. All the things!
Comment
-
-
Originally posted by karasu View PostGood news, I heard Cairo is a major bottleneck for Inkscape. Hopefully they can use this.
Comment
-
-
One could have posted this straight from the web site to get an actual complete view of the library.
Blend2D is written in C++ but it provides both C and C++ APIs. Public functionality is provided through C interface so that each feature of the library is accessible to both C and C++ users. The C API makes it possible to use Blend2D from many programming languages which are able to interface with C (either natively or through FFI). The primary goal of the C++ API is to make the library easy-to-use in C++ projects without the need of managing resources manually. It is built on top of the C API and turns all objects requiring initialization and finalization into smart objects that handle it in their constructors and destructors.
Comment
-
Comment