summaryrefslogtreecommitdiffstats
path: root/thirdparty/thorvg/src/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/thorvg/src/renderer')
-rw-r--r--thirdparty/thorvg/src/renderer/sw_engine/tvgSwCommon.h12
-rw-r--r--thirdparty/thorvg/src/renderer/sw_engine/tvgSwRasterTexmap.h49
-rw-r--r--thirdparty/thorvg/src/renderer/sw_engine/tvgSwRenderer.cpp2
-rw-r--r--thirdparty/thorvg/src/renderer/sw_engine/tvgSwShape.cpp1
-rw-r--r--thirdparty/thorvg/src/renderer/tvgCommon.h12
-rw-r--r--thirdparty/thorvg/src/renderer/tvgPaint.cpp78
-rw-r--r--thirdparty/thorvg/src/renderer/tvgTaskScheduler.h2
7 files changed, 90 insertions, 66 deletions
diff --git a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwCommon.h b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwCommon.h
index 3d73075a4a..231410cdac 100644
--- a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwCommon.h
+++ b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwCommon.h
@@ -26,18 +26,6 @@
#include "tvgCommon.h"
#include "tvgRender.h"
-#include <algorithm>
-
-#if 0
-#include <sys/time.h>
-static double timeStamp()
-{
- struct timeval tv;
- gettimeofday(&tv, NULL);
- return (tv.tv_sec + tv.tv_usec / 1000000.0);
-}
-#endif
-
#define SW_CURVE_TYPE_POINT 0
#define SW_CURVE_TYPE_CUBIC 1
#define SW_ANGLE_PI (180L << 16)
diff --git a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRasterTexmap.h b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRasterTexmap.h
index 8ec2bc0c47..bab534bba2 100644
--- a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRasterTexmap.h
+++ b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRasterTexmap.h
@@ -34,14 +34,6 @@ struct AASpans
int32_t yEnd;
};
-static inline void _swap(float& a, float& b, float& tmp)
-{
- tmp = a;
- a = b;
- b = tmp;
-}
-
-
//Careful! Shared resource, No support threading
static float dudx, dvdx;
static float dxdya, dxdyb, dudya, dvdya;
@@ -85,7 +77,7 @@ static bool _rasterMaskedPolygonImageSegment(SwSurface* surface, const SwImage*
int32_t sh = image->h;
int32_t x1, x2, x, y, ar, ab, iru, irv, px, ay;
int32_t vv = 0, uu = 0;
- int32_t minx = INT32_MAX, maxx = INT32_MIN;
+ int32_t minx = INT32_MAX, maxx = 0;
float dx, u, v, iptr;
SwSpan* span = nullptr; //used only when rle based.
@@ -113,7 +105,7 @@ static bool _rasterMaskedPolygonImageSegment(SwSurface* surface, const SwImage*
if (!region) {
minx = INT32_MAX;
- maxx = INT32_MIN;
+ maxx = 0;
//one single row, could be consisted of multiple spans.
while (span->y == y && spanIdx < image->rle->size) {
if (minx > span->x) minx = span->x;
@@ -278,7 +270,7 @@ static void _rasterBlendingPolygonImageSegment(SwSurface* surface, const SwImage
int32_t dw = surface->stride;
int32_t x1, x2, x, y, ar, ab, iru, irv, px, ay;
int32_t vv = 0, uu = 0;
- int32_t minx = INT32_MAX, maxx = INT32_MIN;
+ int32_t minx = INT32_MAX, maxx = 0;
float dx, u, v, iptr;
uint32_t* buf;
SwSpan* span = nullptr; //used only when rle based.
@@ -307,7 +299,7 @@ static void _rasterBlendingPolygonImageSegment(SwSurface* surface, const SwImage
if (!region) {
minx = INT32_MAX;
- maxx = INT32_MIN;
+ maxx = 0;
//one single row, could be consisted of multiple spans.
while (span->y == y && spanIdx < image->rle->size) {
if (minx > span->x) minx = span->x;
@@ -455,7 +447,7 @@ static void _rasterPolygonImageSegment(SwSurface* surface, const SwImage* image,
int32_t dw = surface->stride;
int32_t x1, x2, x, y, ar, ab, iru, irv, px, ay;
int32_t vv = 0, uu = 0;
- int32_t minx = INT32_MAX, maxx = INT32_MIN;
+ int32_t minx = INT32_MAX, maxx = 0;
float dx, u, v, iptr;
uint32_t* buf;
SwSpan* span = nullptr; //used only when rle based.
@@ -489,7 +481,7 @@ static void _rasterPolygonImageSegment(SwSurface* surface, const SwImage* image,
if (!region) {
minx = INT32_MAX;
- maxx = INT32_MIN;
+ maxx = 0;
//one single row, could be consisted of multiple spans.
while (span->y == y && spanIdx < image->rle->size) {
if (minx > span->x) minx = span->x;
@@ -650,28 +642,27 @@ static void _rasterPolygonImage(SwSurface* surface, const SwImage* image, const
float off_y;
float dxdy[3] = {0.0f, 0.0f, 0.0f};
- float tmp;
auto upper = false;
//Sort the vertices in ascending Y order
if (y[0] > y[1]) {
- _swap(x[0], x[1], tmp);
- _swap(y[0], y[1], tmp);
- _swap(u[0], u[1], tmp);
- _swap(v[0], v[1], tmp);
+ std::swap(x[0], x[1]);
+ std::swap(y[0], y[1]);
+ std::swap(u[0], u[1]);
+ std::swap(v[0], v[1]);
}
if (y[0] > y[2]) {
- _swap(x[0], x[2], tmp);
- _swap(y[0], y[2], tmp);
- _swap(u[0], u[2], tmp);
- _swap(v[0], v[2], tmp);
+ std::swap(x[0], x[2]);
+ std::swap(y[0], y[2]);
+ std::swap(u[0], u[2]);
+ std::swap(v[0], v[2]);
}
if (y[1] > y[2]) {
- _swap(x[1], x[2], tmp);
- _swap(y[1], y[2], tmp);
- _swap(u[1], u[2], tmp);
- _swap(v[1], v[2], tmp);
+ std::swap(x[1], x[2]);
+ std::swap(y[1], y[2]);
+ std::swap(u[1], u[2]);
+ std::swap(v[1], v[2]);
}
//Y indexes
@@ -837,7 +828,9 @@ static AASpans* _AASpans(float ymin, float ymax, const SwImage* image, const SwB
for (int32_t i = 0; i < height; i++) {
aaSpans->lines[i].x[0] = INT32_MAX;
- aaSpans->lines[i].x[1] = INT32_MIN;
+ aaSpans->lines[i].x[1] = 0;
+ aaSpans->lines[i].length[0] = 0;
+ aaSpans->lines[i].length[1] = 0;
}
return aaSpans;
}
diff --git a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRenderer.cpp b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRenderer.cpp
index f689179928..78108af095 100644
--- a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRenderer.cpp
+++ b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwRenderer.cpp
@@ -86,7 +86,7 @@ struct SwShapeTask : SwTask
Additionally, the stroke style should not be dashed. */
bool antialiasing(float strokeWidth)
{
- return strokeWidth < 2.0f || rshape->stroke->dashCnt > 0 || rshape->stroke->strokeFirst;
+ return strokeWidth < 2.0f || rshape->stroke->dashCnt > 0 || rshape->stroke->strokeFirst || rshape->strokeTrim();
}
float validStrokeWidth()
diff --git a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwShape.cpp b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwShape.cpp
index d8dd40d45b..4f069ece97 100644
--- a/thirdparty/thorvg/src/renderer/sw_engine/tvgSwShape.cpp
+++ b/thirdparty/thorvg/src/renderer/sw_engine/tvgSwShape.cpp
@@ -420,6 +420,7 @@ static bool _axisAlignedRect(const SwOutline* outline)
{
//Fast Track: axis-aligned rectangle?
if (outline->pts.count != 5) return false;
+ if (outline->types[2] == SW_CURVE_TYPE_CUBIC) return false;
auto pt1 = outline->pts.data + 0;
auto pt2 = outline->pts.data + 1;
diff --git a/thirdparty/thorvg/src/renderer/tvgCommon.h b/thirdparty/thorvg/src/renderer/tvgCommon.h
index d080ea19cf..15a2cc4ef0 100644
--- a/thirdparty/thorvg/src/renderer/tvgCommon.h
+++ b/thirdparty/thorvg/src/renderer/tvgCommon.h
@@ -87,4 +87,16 @@ uint16_t THORVG_VERSION_NUMBER();
#define P(A) ((A)->pImpl) //Access to pimpl.
#define PP(A) (((Paint*)(A))->pImpl) //Access to pimpl.
+
+//for debugging
+#if 0
+#include <sys/time.h>
+static inline double THORVG_TIMESTAMP()
+{
+ struct timeval tv;
+ gettimeofday(&tv, NULL);
+ return (tv.tv_sec + tv.tv_usec / 1000000.0);
+}
+#endif
+
#endif //_TVG_COMMON_H_
diff --git a/thirdparty/thorvg/src/renderer/tvgPaint.cpp b/thirdparty/thorvg/src/renderer/tvgPaint.cpp
index fcb632e2b1..ff0f75dc0f 100644
--- a/thirdparty/thorvg/src/renderer/tvgPaint.cpp
+++ b/thirdparty/thorvg/src/renderer/tvgPaint.cpp
@@ -41,8 +41,39 @@
}
+static Result _clipRect(RenderMethod* renderer, const Point* pts, const RenderTransform* pTransform, RenderTransform* rTransform, RenderRegion& before)
+{
+ //sorting
+ Point tmp[4];
+ Point min = {FLT_MAX, FLT_MAX};
+ Point max = {0.0f, 0.0f};
+
+ for (int i = 0; i < 4; ++i) {
+ tmp[i] = pts[i];
+ if (rTransform) tmp[i] *= rTransform->m;
+ if (pTransform) tmp[i] *= pTransform->m;
+ if (tmp[i].x < min.x) min.x = tmp[i].x;
+ if (tmp[i].x > max.x) max.x = tmp[i].x;
+ if (tmp[i].y < min.y) min.y = tmp[i].y;
+ if (tmp[i].y > max.y) max.y = tmp[i].y;
+ }
-static Result _compFastTrack(Paint* cmpTarget, const RenderTransform* pTransform, RenderTransform* rTransform, RenderRegion& viewport)
+ float region[4] = {float(before.x), float(before.x + before.w), float(before.y), float(before.y + before.h)};
+
+ //figure out if the clipper is a superset of the current viewport(before) region
+ if (min.x <= region[0] && max.x >= region[1] && min.y <= region[2] && max.y >= region[3]) {
+ //viewport region is same, nothing to do.
+ return Result::Success;
+ //figure out if the clipper is totally outside of the viewport
+ } else if (max.x <= region[0] || min.x >= region[1] || max.y <= region[2] || min.y >= region[3]) {
+ renderer->viewport({0, 0, 0, 0});
+ return Result::Success;
+ }
+ return Result::InsufficientCondition;
+}
+
+
+static Result _compFastTrack(RenderMethod* renderer, Paint* cmpTarget, const RenderTransform* pTransform, RenderTransform* rTransform, RenderRegion& before)
{
/* Access Shape class by Paint is bad... but it's ok still it's an internal usage. */
auto shape = static_cast<Shape*>(cmpTarget);
@@ -58,9 +89,13 @@ static Result _compFastTrack(Paint* cmpTarget, const RenderTransform* pTransform
if (rTransform) rTransform->update();
- //No rotation and no skewing
- if (pTransform && (!mathRightAngle(&pTransform->m) || mathSkewed(&pTransform->m))) return Result::InsufficientCondition;
- if (rTransform && (!mathRightAngle(&rTransform->m) || mathSkewed(&rTransform->m))) return Result::InsufficientCondition;
+ //No rotation and no skewing, still can try out clipping the rect region.
+ auto tryClip = false;
+
+ if (pTransform && (!mathRightAngle(&pTransform->m) || mathSkewed(&pTransform->m))) tryClip = true;
+ if (rTransform && (!mathRightAngle(&rTransform->m) || mathSkewed(&rTransform->m))) tryClip = true;
+
+ if (tryClip) return _clipRect(renderer, pts, pTransform, rTransform, before);
//Perpendicular Rectangle?
auto pt1 = pts + 0;
@@ -71,6 +106,8 @@ static Result _compFastTrack(Paint* cmpTarget, const RenderTransform* pTransform
if ((mathEqual(pt1->x, pt2->x) && mathEqual(pt2->y, pt3->y) && mathEqual(pt3->x, pt4->x) && mathEqual(pt1->y, pt4->y)) ||
(mathEqual(pt2->x, pt3->x) && mathEqual(pt1->y, pt2->y) && mathEqual(pt1->x, pt4->x) && mathEqual(pt3->y, pt4->y))) {
+ RenderRegion after;
+
auto v1 = *pt1;
auto v2 = *pt3;
@@ -85,25 +122,19 @@ static Result _compFastTrack(Paint* cmpTarget, const RenderTransform* pTransform
}
//sorting
- if (v1.x > v2.x) {
- auto tmp = v2.x;
- v2.x = v1.x;
- v1.x = tmp;
- }
+ if (v1.x > v2.x) std::swap(v1.x, v2.x);
+ if (v1.y > v2.y) std::swap(v1.y, v2.y);
- if (v1.y > v2.y) {
- auto tmp = v2.y;
- v2.y = v1.y;
- v1.y = tmp;
- }
+ after.x = static_cast<int32_t>(v1.x);
+ after.y = static_cast<int32_t>(v1.y);
+ after.w = static_cast<int32_t>(ceil(v2.x - after.x));
+ after.h = static_cast<int32_t>(ceil(v2.y - after.y));
- viewport.x = static_cast<int32_t>(v1.x);
- viewport.y = static_cast<int32_t>(v1.y);
- viewport.w = static_cast<int32_t>(ceil(v2.x - viewport.x));
- viewport.h = static_cast<int32_t>(ceil(v2.y - viewport.y));
+ if (after.w < 0) after.w = 0;
+ if (after.h < 0) after.h = 0;
- if (viewport.w < 0) viewport.w = 0;
- if (viewport.h < 0) viewport.h = 0;
+ after.intersect(before);
+ renderer->viewport(after);
return Result::Success;
}
@@ -264,11 +295,8 @@ RenderData Paint::Impl::update(RenderMethod* renderer, const RenderTransform* pT
}
}
if (tryFastTrack) {
- RenderRegion viewport2;
- if ((compFastTrack = _compFastTrack(target, pTransform, target->pImpl->rTransform, viewport2)) == Result::Success) {
- viewport = renderer->viewport();
- viewport2.intersect(viewport);
- renderer->viewport(viewport2);
+ viewport = renderer->viewport();
+ if ((compFastTrack = _compFastTrack(renderer, target, pTransform, target->pImpl->rTransform, viewport)) == Result::Success) {
target->pImpl->ctxFlag |= ContextFlag::FastTrack;
}
}
diff --git a/thirdparty/thorvg/src/renderer/tvgTaskScheduler.h b/thirdparty/thorvg/src/renderer/tvgTaskScheduler.h
index 58918e88f0..93f8481707 100644
--- a/thirdparty/thorvg/src/renderer/tvgTaskScheduler.h
+++ b/thirdparty/thorvg/src/renderer/tvgTaskScheduler.h
@@ -23,6 +23,8 @@
#ifndef _TVG_TASK_SCHEDULER_H_
#define _TVG_TASK_SCHEDULER_H_
+#define _DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR
+
#include <mutex>
#include <condition_variable>