1
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-04-26 21:29:03 +00:00

Remove test code for animated path thumbnails.

This commit is contained in:
John Preston 2021-07-02 20:21:06 +03:00
parent b22e2ffe1d
commit a8df3dcf91
4 changed files with 0 additions and 44 deletions

View File

@ -778,15 +778,6 @@ void StickerSetBox::Inner::paintSticker(
}
QPoint ppos = position + QPoint((st::stickersSize.width() - w) / 2, (st::stickersSize.height() - h) / 2);
ChatHelpers::PaintStickerThumbnailPath(
p,
media.get(),
QRect(ppos, QSize(w, h)),
_pathGradient.get());
return; AssertIsDebug();
if (element.animated && element.animated->ready()) {
const auto frame = element.animated->frame();
p.drawImage(

View File

@ -828,16 +828,6 @@ void FieldAutocomplete::Inner::paintEvent(QPaintEvent *e) {
h = std::max(qRound(coef * document->dimensions.height()), 1);
}
QPoint ppos = pos + QPoint((st::stickerPanSize.width() - w) / 2, (st::stickerPanSize.height() - h) / 2);
ChatHelpers::PaintStickerThumbnailPath(
p,
media.get(),
QRect(ppos, QSize(w, h)),
_pathGradient.get());
continue; AssertIsDebug();
if (sticker.animated && sticker.animated->ready()) {
const auto frame = sticker.animated->frame();
const auto size = frame.size() / cIntRetinaFactor();

View File

@ -1897,15 +1897,6 @@ void StickersListWidget::paintSticker(Painter &p, Set &set, int y, int section,
}
auto ppos = pos + QPoint((_singleSize.width() - w) / 2, (_singleSize.height() - h) / 2);
PaintStickerThumbnailPath(
p,
media.get(),
QRect(ppos, QSize{ w, h }),
_pathGradient.get());
return; AssertIsDebug();
if (sticker.animated && sticker.animated->ready()) {
auto request = Lottie::FrameRequest();
request.box = boundingBoxSize() * cIntRetinaFactor();

View File

@ -468,22 +468,6 @@ void Sticker::paint(Painter &p, const QRect &clip, const PaintContext *context)
p.setOpacity(1);
}
if (context->pathGradient) {
const auto thumbSize = getThumbSize();
const auto w = thumbSize.width();
const auto h = thumbSize.height();
ChatHelpers::PaintStickerThumbnailPath(
p,
_dataMedia.get(),
QRect(
(st::stickerPanSize.width() - w) / 2,
(st::stickerPanSize.height() - h) / 2,
w,
h),
context->pathGradient);
}
return; AssertIsDebug();
prepareThumbnail();
if (_lottie && _lottie->ready()) {
const auto frame = _lottie->frame();