mirror of https://github.com/procxx/kepka.git
Fix video messages playback on Retina.
This commit is contained in:
parent
d3bf489bea
commit
3cd9d4b5ec
|
@ -419,8 +419,6 @@ struct Data {
|
|||
crl::time LastFeaturedStickersUpdate = 0;
|
||||
Stickers::Order ArchivedStickerSetsOrder;
|
||||
|
||||
CircleMasksMap CircleMasks;
|
||||
|
||||
bool AskDownloadPath = false;
|
||||
QString DownloadPath;
|
||||
QByteArray DownloadPathBookmark;
|
||||
|
@ -553,8 +551,6 @@ DefineRefVar(Global, base::Observable<void>, FeaturedStickerSetsUnreadCountChang
|
|||
DefineVar(Global, crl::time, LastFeaturedStickersUpdate);
|
||||
DefineVar(Global, Stickers::Order, ArchivedStickerSetsOrder);
|
||||
|
||||
DefineRefVar(Global, CircleMasksMap, CircleMasks);
|
||||
|
||||
DefineVar(Global, bool, AskDownloadPath);
|
||||
DefineVar(Global, QString, DownloadPath);
|
||||
DefineVar(Global, QByteArray, DownloadPathBookmark);
|
||||
|
|
|
@ -264,9 +264,6 @@ DeclareRefVar(base::Observable<void>, PhoneCallsEnabledChanged);
|
|||
typedef QMap<PeerId, MsgId> HiddenPinnedMessagesMap;
|
||||
DeclareVar(HiddenPinnedMessagesMap, HiddenPinnedMessages);
|
||||
|
||||
typedef QMap<uint64, QPixmap> CircleMasksMap;
|
||||
DeclareRefVar(CircleMasksMap, CircleMasks);
|
||||
|
||||
DeclareVar(bool, AskDownloadPath);
|
||||
DeclareVar(QString, DownloadPath);
|
||||
DeclareVar(QByteArray, DownloadPathBookmark);
|
||||
|
|
|
@ -14,29 +14,29 @@ TG_FORCE_INLINE uint64 blurGetColors(const uchar *p) {
|
|||
return (uint64)p[0] + ((uint64)p[1] << 16) + ((uint64)p[2] << 32) + ((uint64)p[3] << 48);
|
||||
}
|
||||
|
||||
const QPixmap &circleMask(int width, int height) {
|
||||
const QImage &circleMask(QSize size) {
|
||||
Assert(Global::started());
|
||||
|
||||
uint64 key = uint64(uint32(width)) << 32 | uint64(uint32(height));
|
||||
uint64 key = (uint64(uint32(size.width())) << 32)
|
||||
| uint64(uint32(size.height()));
|
||||
|
||||
Global::CircleMasksMap &masks(Global::RefCircleMasks());
|
||||
auto i = masks.constFind(key);
|
||||
if (i == masks.cend()) {
|
||||
QImage mask(width, height, QImage::Format_ARGB32_Premultiplied);
|
||||
{
|
||||
Painter p(&mask);
|
||||
PainterHighQualityEnabler hq(p);
|
||||
|
||||
p.setCompositionMode(QPainter::CompositionMode_Source);
|
||||
p.fillRect(0, 0, width, height, Qt::transparent);
|
||||
p.setBrush(Qt::white);
|
||||
p.setPen(Qt::NoPen);
|
||||
p.drawEllipse(0, 0, width, height);
|
||||
}
|
||||
mask.setDevicePixelRatio(cRetinaFactor());
|
||||
i = masks.insert(key, App::pixmapFromImageInPlace(std::move(mask)));
|
||||
static auto masks = base::flat_map<uint64, QImage>();
|
||||
const auto i = masks.find(key);
|
||||
if (i != end(masks)) {
|
||||
return i->second;
|
||||
}
|
||||
return i.value();
|
||||
auto mask = QImage(
|
||||
size,
|
||||
QImage::Format_ARGB32_Premultiplied);
|
||||
mask.fill(Qt::transparent);
|
||||
{
|
||||
Painter p(&mask);
|
||||
PainterHighQualityEnabler hq(p);
|
||||
p.setBrush(Qt::white);
|
||||
p.setPen(Qt::NoPen);
|
||||
p.drawEllipse(QRect(QPoint(), size));
|
||||
}
|
||||
return masks.emplace(key, std::move(mask)).first->second;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
@ -387,14 +387,14 @@ QImage BlurLargeImage(QImage image, int radius) {
|
|||
void prepareCircle(QImage &img) {
|
||||
Assert(!img.isNull());
|
||||
|
||||
img.setDevicePixelRatio(cRetinaFactor());
|
||||
img = img.convertToFormat(QImage::Format_ARGB32_Premultiplied);
|
||||
Assert(!img.isNull());
|
||||
|
||||
QPixmap mask = circleMask(img.width(), img.height());
|
||||
Painter p(&img);
|
||||
p.setCompositionMode(QPainter::CompositionMode_DestinationIn);
|
||||
p.drawPixmap(0, 0, mask);
|
||||
p.drawImage(
|
||||
QRect(QPoint(), img.size() / img.devicePixelRatio()),
|
||||
circleMask(img.size()));
|
||||
}
|
||||
|
||||
void prepareRound(
|
||||
|
@ -463,6 +463,7 @@ void prepareRound(
|
|||
Assert((corners & RectPart::AllCorners) == RectPart::AllCorners);
|
||||
Assert(target.isNull());
|
||||
prepareCircle(image);
|
||||
return;
|
||||
}
|
||||
Assert(!image.isNull());
|
||||
|
||||
|
|
Loading…
Reference in New Issue