mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
330 lines
8.6 KiB
C++
330 lines
8.6 KiB
C++
/*
|
|
* Copyright (c) 2020 Samsung Electronics Co., Ltd. All rights reserved.
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
#ifndef _TVG_SW_COMMON_H_
|
|
#define _TVG_SW_COMMON_H_
|
|
|
|
#include "tvgCommon.h"
|
|
|
|
#ifdef THORVG_AVX_VECTOR_SUPPORT
|
|
#include <immintrin.h>
|
|
#endif
|
|
|
|
#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
|
|
|
|
using namespace tvg;
|
|
|
|
#define SW_CURVE_TYPE_POINT 0
|
|
#define SW_CURVE_TYPE_CUBIC 1
|
|
#define SW_OUTLINE_FILL_WINDING 0
|
|
#define SW_OUTLINE_FILL_EVEN_ODD 1
|
|
#define SW_ANGLE_PI (180L << 16)
|
|
#define SW_ANGLE_2PI (SW_ANGLE_PI << 1)
|
|
#define SW_ANGLE_PI2 (SW_ANGLE_PI >> 1)
|
|
#define SW_ANGLE_PI4 (SW_ANGLE_PI >> 2)
|
|
|
|
using SwCoord = signed long;
|
|
using SwFixed = signed long long;
|
|
|
|
struct SwPoint
|
|
{
|
|
SwCoord x, y;
|
|
|
|
SwPoint& operator+=(const SwPoint& rhs) {
|
|
x += rhs.x;
|
|
y += rhs.y;
|
|
return *this;
|
|
}
|
|
|
|
SwPoint operator+(const SwPoint& rhs) const {
|
|
return {x + rhs.x, y + rhs.y};
|
|
}
|
|
|
|
SwPoint operator-(const SwPoint& rhs) const {
|
|
return {x - rhs.x, y - rhs.y};
|
|
}
|
|
|
|
bool operator==(const SwPoint& rhs ) const {
|
|
return (x == rhs.x && y == rhs.y);
|
|
}
|
|
|
|
bool operator!=(const SwPoint& rhs) const {
|
|
return (x != rhs.x || y != rhs.y);
|
|
}
|
|
|
|
bool zero()
|
|
{
|
|
if (x == 0 && y == 0) return true;
|
|
else return false;
|
|
}
|
|
|
|
bool small()
|
|
{
|
|
//2 is epsilon...
|
|
if (abs(x) < 2 && abs(y) < 2) return true;
|
|
else return false;
|
|
}
|
|
|
|
};
|
|
|
|
struct SwSize
|
|
{
|
|
SwCoord w, h;
|
|
};
|
|
|
|
struct SwOutline
|
|
{
|
|
uint32_t* cntrs; //the contour end points
|
|
uint32_t cntrsCnt; //number of contours in glyph
|
|
uint32_t reservedCntrsCnt;
|
|
SwPoint* pts; //the outline's points
|
|
uint32_t ptsCnt; //number of points in the glyph
|
|
uint32_t reservedPtsCnt;
|
|
uint8_t* types; //curve type
|
|
uint8_t fillMode; //outline fill mode
|
|
bool opened; //opened path?
|
|
};
|
|
|
|
struct SwSpan
|
|
{
|
|
int16_t x, y;
|
|
uint16_t len;
|
|
uint8_t coverage;
|
|
};
|
|
|
|
struct SwRleData
|
|
{
|
|
SwSpan *spans;
|
|
uint32_t alloc;
|
|
uint32_t size;
|
|
};
|
|
|
|
struct SwBBox
|
|
{
|
|
SwPoint min, max;
|
|
};
|
|
|
|
struct SwStrokeBorder
|
|
{
|
|
uint32_t ptsCnt;
|
|
uint32_t maxPts;
|
|
SwPoint* pts;
|
|
uint8_t* tags;
|
|
int32_t start; //index of current sub-path start point
|
|
bool movable; //true: for ends of lineto borders
|
|
bool valid;
|
|
};
|
|
|
|
struct SwStroke
|
|
{
|
|
SwFixed angleIn;
|
|
SwFixed angleOut;
|
|
SwPoint center;
|
|
SwFixed lineLength;
|
|
SwFixed subPathAngle;
|
|
SwPoint ptStartSubPath;
|
|
SwFixed subPathLineLength;
|
|
SwFixed width;
|
|
|
|
StrokeCap cap;
|
|
StrokeJoin join;
|
|
StrokeJoin joinSaved;
|
|
|
|
SwStrokeBorder borders[2];
|
|
|
|
float sx, sy;
|
|
|
|
bool firstPt;
|
|
bool openSubPath;
|
|
bool handleWideStrokes;
|
|
};
|
|
|
|
struct SwDashStroke
|
|
{
|
|
SwOutline* outline;
|
|
int32_t curLen;
|
|
int32_t curIdx;
|
|
Point ptStart;
|
|
Point ptCur;
|
|
float* pattern;
|
|
uint32_t cnt;
|
|
bool curOpGap;
|
|
};
|
|
|
|
struct SwFill
|
|
{
|
|
struct SwLinear {
|
|
float dx, dy;
|
|
float len;
|
|
float offset;
|
|
};
|
|
|
|
struct SwRadial {
|
|
float cx, cy;
|
|
float a;
|
|
float inv2a;
|
|
};
|
|
|
|
union {
|
|
SwLinear linear;
|
|
SwRadial radial;
|
|
};
|
|
|
|
uint32_t* ctable;
|
|
FillSpread spread;
|
|
float sx, sy;
|
|
|
|
bool translucent;
|
|
};
|
|
|
|
struct SwShape
|
|
{
|
|
SwOutline* outline;
|
|
SwStroke* stroke;
|
|
SwFill* fill;
|
|
SwRleData* rle;
|
|
SwRleData* strokeRle;
|
|
SwBBox bbox;
|
|
|
|
bool rect; //Fast Track: Othogonal rectangle?
|
|
};
|
|
|
|
|
|
static inline SwCoord TO_SWCOORD(float val)
|
|
{
|
|
return SwCoord(val * 64);
|
|
}
|
|
|
|
|
|
static inline uint32_t COLOR_ALPHA(uint32_t rgba)
|
|
{
|
|
return (rgba >> 24) & 0xff;
|
|
}
|
|
|
|
|
|
static inline uint32_t COLOR_ALPHA_BLEND(uint32_t rgba, uint32_t alpha)
|
|
{
|
|
return (((((rgba >> 8) & 0x00ff00ff) * alpha) & 0xff00ff00) +
|
|
((((rgba & 0x00ff00ff) * alpha) >> 8) & 0x00ff00ff));
|
|
}
|
|
|
|
|
|
static inline uint32_t COLOR_INTERPOLATE(uint32_t rgba1, uint32_t a, uint32_t rgba2, uint32_t b)
|
|
{
|
|
auto t = (((rgba1 & 0xff00ff) * a + (rgba2 & 0xff00ff) * b) >> 8) & 0xff00ff;
|
|
rgba1 = (((rgba1 >> 8) & 0xff00ff) * a + ((rgba2 >> 8) & 0xff00ff) * b) & 0xff00ff00;
|
|
return (rgba1 |= t);
|
|
}
|
|
|
|
|
|
static inline uint32_t COLOR_ARGB_JOIN(uint8_t r, uint8_t g, uint8_t b, uint8_t a)
|
|
{
|
|
return (a << 24 | r << 16 | g << 8 | b);
|
|
}
|
|
|
|
|
|
static inline uint8_t COLOR_ALPHA_MULTIPLY(uint32_t c, uint32_t a)
|
|
{
|
|
return (c * a) >> 8;
|
|
}
|
|
|
|
|
|
int64_t mathMultiply(int64_t a, int64_t b);
|
|
int64_t mathDivide(int64_t a, int64_t b);
|
|
int64_t mathMulDiv(int64_t a, int64_t b, int64_t c);
|
|
void mathRotate(SwPoint& pt, SwFixed angle);
|
|
SwFixed mathTan(SwFixed angle);
|
|
SwFixed mathAtan(const SwPoint& pt);
|
|
SwFixed mathCos(SwFixed angle);
|
|
SwFixed mathSin(SwFixed angle);
|
|
void mathSplitCubic(SwPoint* base);
|
|
SwFixed mathDiff(SwFixed angle1, SwFixed angle2);
|
|
SwFixed mathLength(SwPoint& pt);
|
|
bool mathSmallCubic(SwPoint* base, SwFixed& angleIn, SwFixed& angleMid, SwFixed& angleOut);
|
|
SwFixed mathMean(SwFixed angle1, SwFixed angle2);
|
|
|
|
void shapeReset(SwShape& shape);
|
|
bool shapeGenOutline(SwShape& shape, const Shape* sdata, const Matrix* transform);
|
|
bool shapePrepare(SwShape& shape, const Shape* sdata, const SwSize& clip, const Matrix* transform);
|
|
bool shapeGenRle(SwShape& shape, const Shape* sdata, const SwSize& clip, bool antiAlias);
|
|
void shapeDelOutline(SwShape& shape);
|
|
void shapeResetStroke(SwShape& shape, const Shape* sdata, const Matrix* transform);
|
|
bool shapeGenStrokeRle(SwShape& shape, const Shape* sdata, const Matrix* transform, const SwSize& clip);
|
|
void shapeFree(SwShape& shape);
|
|
void shapeDelStroke(SwShape& shape);
|
|
bool shapeGenFillColors(SwShape& shape, const Fill* fill, const Matrix* transform, bool ctable);
|
|
void shapeResetFill(SwShape& shape);
|
|
void shapeDelFill(SwShape& shape);
|
|
|
|
void strokeReset(SwStroke& stroke, const Shape* shape, const Matrix* transform);
|
|
bool strokeParseOutline(SwStroke& stroke, const SwOutline& outline);
|
|
SwOutline* strokeExportOutline(SwStroke& stroke);
|
|
void strokeFree(SwStroke* stroke);
|
|
|
|
bool fillGenColorTable(SwFill* fill, const Fill* fdata, const Matrix* transform, bool ctable);
|
|
void fillReset(SwFill* fill);
|
|
void fillFree(SwFill* fill);
|
|
void fillFetchLinear(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t offset, uint32_t len);
|
|
void fillFetchRadial(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len);
|
|
|
|
SwRleData* rleRender(const SwOutline* outline, const SwBBox& bbox, const SwSize& clip, bool antiAlias);
|
|
void rleFree(SwRleData* rle);
|
|
|
|
bool rasterGradientShape(Surface& surface, SwShape& shape, unsigned id);
|
|
bool rasterSolidShape(Surface& surface, SwShape& shape, uint8_t r, uint8_t g, uint8_t b, uint8_t a);
|
|
bool rasterStroke(Surface& surface, SwShape& shape, uint8_t r, uint8_t g, uint8_t b, uint8_t a);
|
|
bool rasterClear(Surface& surface);
|
|
|
|
|
|
static inline void rasterARGB32(uint32_t *dst, uint32_t val, uint32_t offset, int32_t len)
|
|
{
|
|
#ifdef THORVG_AVX_VECTOR_SUPPORT
|
|
int32_t align = (8 - (offset % 8)) % 8;
|
|
//Vectorization
|
|
auto avxDst = (__m256i*)(dst + offset + align);
|
|
int32_t i = (len - align);
|
|
for (;i > 7; i -= 8, ++avxDst) {
|
|
*avxDst = _mm256_set1_epi32(val);
|
|
}
|
|
//Alignment
|
|
if (align > 0) {
|
|
if (align > len) align -= (align - len);
|
|
auto tmp = dst + offset;
|
|
for (; align > 0; --align, ++tmp) *tmp = val;
|
|
}
|
|
//Pack Leftovers
|
|
dst += offset + (len - i);
|
|
while (i-- > 0) *(dst++) = val;
|
|
#else
|
|
dst += offset;
|
|
while (len--) *dst++ = val;
|
|
#endif
|
|
}
|
|
|
|
#endif /* _TVG_SW_COMMON_H_ */
|