thorvg/test
Hermet Park db55481e97 renamed stroke apis family.
float Shape::stroke(float width) -> float Shape::strokeWidth(float width)
Result Shape::stroke(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255) -> Result Shape::strokeFill(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255)
Result Shape::stroke(std::unique_ptr<Fill> f) -> Result Shape::strokeFill(std::unique_ptr<Fill> f)
Result Shape::stroke(const float* dashPattern, uint32_t cnt, float offset = 0.0f) ->  Result Shape::strokeDash(const float* dashPattern, uint32_t cnt, float offset = 0.0f)
Result Shape::stroke(StrokeCap cap) -> Result Shape::strokeCap(StrokeCap cap)
Result Shape::stroke(StrokeJoin join) -> Result Shape::strokeJoin(StrokeJoin join)
Result Shape::strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a = nullptr) const -> Result Shape::strokeFill(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a = nullptr) const

@Issue: https://github.com/thorvg/thorvg/issues/1372
2023-10-27 11:46:51 +09:00
..
capi animation/lottie: updated the frame count unit. 2023-10-24 11:49:57 +09:00
images test: enhanced the unit-test coverage 2023-09-26 10:48:33 +09:00
regression infra: Improve regression finder 2023-05-08 10:38:27 +09:00
catch.hpp test: upgrade catch2 2023-01-30 13:28:44 +09:00
meson.build test: enhanced the unit-test coverage 2023-09-26 10:48:33 +09:00
testAccessor.cpp Fix clang compiler warnings in unit tests. 2023-06-07 16:56:30 +09:00
testAnimation.cpp animation/lottie: updated the frame count unit. 2023-10-24 11:49:57 +09:00
testFill.cpp Fix clang compiler warnings in unit tests. 2023-06-07 16:56:30 +09:00
testInitializer.cpp test: fix broken plugin support. 2023-04-06 19:47:10 +09:00
testMain.cpp tests: introduce catch2 unit tests infrastructure. 2021-06-04 16:46:34 +09:00
testPaint.cpp tests: bounds test ++ 2023-08-01 14:53:12 +02:00
testPicture.cpp webp_loader: Introduce Webp image loader 2023-06-09 10:58:01 +09:00
testSavers.cpp Fix clang compiler warnings in unit tests. 2023-06-07 16:56:30 +09:00
testScene.cpp test: ++coverage of Canvas::paints(), Scene::paints() 2023-06-14 10:46:21 +09:00
testShape.cpp renamed stroke apis family. 2023-10-27 11:46:51 +09:00
testSwCanvas.cpp test: fix broken plugin support. 2023-04-06 19:47:10 +09:00
testSwCanvasBase.cpp common canvas: Alter the concept of the Canvas::clear() API. 2023-08-02 17:23:53 +09:00
testSwEngine.cpp renamed stroke apis family. 2023-10-27 11:46:51 +09:00