mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
103 lines
2.1 KiB
C
103 lines
2.1 KiB
C
#ifndef _LOT_COMMON_H_
|
|
#define _LOT_COMMON_H_
|
|
|
|
#ifdef _WIN32
|
|
#ifdef LOT_BUILD
|
|
#ifdef DLL_EXPORT
|
|
#define LOT_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define LOT_EXPORT
|
|
#endif
|
|
#else
|
|
#define LOT_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#ifdef __GNUC__
|
|
#if __GNUC__ >= 4
|
|
#define LOT_EXPORT __attribute__((visibility("default")))
|
|
#else
|
|
#define LOT_EXPORT
|
|
#endif
|
|
#else
|
|
#define LOT_EXPORT
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief Enumeration for Lottie Player error code.
|
|
*/
|
|
typedef enum
|
|
{
|
|
LOT_PLAYER_ERROR_NONE = 0,
|
|
LOT_PLAYER_ERROR_NOT_PERMITTED,
|
|
LOT_PLAYER_ERROR_OUT_OF_MEMORY,
|
|
LOT_PLAYER_ERROR_INVALID_PARAMETER,
|
|
LOT_PLAYER_ERROR_RESULT_OUT_OF_RANGE,
|
|
LOT_PLAYER_ERROR_ALREADY_IN_PROGRESS,
|
|
LOT_PLAYER_ERROR_UNKNOWN
|
|
} lotplayer_error_e;
|
|
|
|
|
|
typedef struct LOTNode {
|
|
|
|
#define ChangeFlagNone 0x0000
|
|
#define ChangeFlagPath 0x0001
|
|
#define ChangeFlagPaint 0x0010
|
|
#define ChangeFlagAll (ChangeFlagPath & ChangeFlagPaint)
|
|
|
|
enum BrushType { BrushSolid, BrushGradient };
|
|
enum FillRule { EvenOdd, Winding };
|
|
enum JoinStyle { MiterJoin, BevelJoin, RoundJoin };
|
|
enum CapStyle { FlatCap, SquareCap, RoundCap };
|
|
|
|
struct PathData {
|
|
const float *ptPtr;
|
|
int ptCount;
|
|
const char* elmPtr;
|
|
int elmCount;
|
|
};
|
|
|
|
struct Color {
|
|
unsigned char r, g, b, a;
|
|
};
|
|
|
|
struct Stroke {
|
|
bool enable;
|
|
int width;
|
|
CapStyle cap;
|
|
JoinStyle join;
|
|
int meterLimit;
|
|
float* dashArray;
|
|
int dashArraySize;
|
|
};
|
|
|
|
struct Gradient {
|
|
enum Type { Linear = 1, Radial = 2 };
|
|
Gradient::Type type;
|
|
struct {
|
|
float x, y;
|
|
} start, end, center, focal;
|
|
float cradius;
|
|
float fradius;
|
|
};
|
|
|
|
int mFlag;
|
|
BrushType mType;
|
|
FillRule mFillRule;
|
|
PathData mPath;
|
|
Color mColor;
|
|
Stroke mStroke;
|
|
Gradient mGradient;
|
|
} lotnode;
|
|
|
|
typedef struct LOTBuffer {
|
|
uint32_t *buffer;
|
|
int width;
|
|
int height;
|
|
int bytesPerLine;
|
|
bool clear;
|
|
} lotbuf;
|
|
|
|
#endif // _LOT_COMMON_H_
|