telegram/TMessagesProj/jni/rlottie/src/vector/vdrawable.cpp
2025-11-22 14:04:28 +01:00

94 lines
2.7 KiB
C++
Executable file

/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "vdrawable.h"
#include "vdasher.h"
#include "vraster.h"
void VDrawable::preprocess(const VRect &clip)
{
if (mFlag & (DirtyState::Path)) {
if (mStroke.enable) {
if (mStroke.mDash.size()) {
VDasher dasher(mStroke.mDash.data(), mStroke.mDash.size());
mPath = dasher.dashed(mPath);
}
mRasterizer.rasterize(std::move(mPath), mStroke.cap, mStroke.join,
mStroke.width, mStroke.meterLimit, clip);
} else {
mRasterizer.rasterize(std::move(mPath), mFillRule, clip);
}
mPath = {};
mFlag &= ~DirtyFlag(DirtyState::Path);
}
}
VRle VDrawable::rle()
{
return mRasterizer.rle();
}
void VDrawable::setStrokeInfo(CapStyle cap, JoinStyle join, float meterLimit,
float strokeWidth)
{
if ((mStroke.cap == cap) && (mStroke.join == join) &&
vCompare(mStroke.meterLimit, meterLimit) &&
vCompare(mStroke.width, strokeWidth))
return;
mStroke.enable = true;
mStroke.cap = cap;
mStroke.join = join;
mStroke.meterLimit = meterLimit;
mStroke.width = strokeWidth;
mFlag |= DirtyState::Path;
}
void VDrawable::setDashInfo(float *array, uint size)
{
bool hasChanged = false;
if (mStroke.mDash.size() == size) {
for (uint i = 0; i < size; i++) {
if (!vCompare(mStroke.mDash[i], array[i])) {
hasChanged = true;
break;
}
}
} else {
hasChanged = true;
}
if (!hasChanged) return;
mStroke.mDash.clear();
for (uint i = 0; i < size; i++) {
mStroke.mDash.push_back(array[i]);
}
if (mStroke.mDash.size() == 1) {
mStroke.mDash.push_back(20);
}
mFlag |= DirtyState::Path;
}
void VDrawable::setPath(const VPath &path)
{
mPath = path;
mFlag |= DirtyState::Path;
}