怎么把telegram的表情包导入微信?
2023-3-23 10:22:0 Author: blog.upx8.com(查看原文) 阅读量:32 收藏

echo '#if defined(__ARM_NEON__)

#include "vdrawhelper.h"

void memfill32(uint32_t *dest, uint32_t value, int length)
{
    memset(dest, value, length);
}

static void color_SourceOver(uint32_t *dest, int length, uint32_t color, uint32_t alpha)
{
    int ialpha, i;

    if (alpha != 255) color = BYTE_MUL(color, alpha);
    ialpha = 255 - vAlpha(color);
    for (i = 0; i < length; ++i) dest[i] = color + BYTE_MUL(dest[i], ialpha);
}

void RenderFuncTable::neon()
{
    updateColor(BlendMode::Src , color_SourceOver);
}
#endif
' > lib/src/rlottie/src/vector/vdrawhelper_neon.cpp

文章来源: https://blog.upx8.com/3330
如有侵权请联系:admin#unsafe.sh