Use QImage::sizeInBytes() instead of deprecated QImage::byteCount()
Change-Id: If3f21fc43d0118c1819d354c8ef43f1b79617c7b Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
This commit is contained in:
parent
6c1c47611f
commit
4e0e6db654
@ -119,7 +119,7 @@ QSharedPointer<QWaylandBuffer> QWaylandCursor::cursorBitmapImage(const QCursor *
|
||||
|
||||
const QImage &img = cursor->pixmap().toImage();
|
||||
QSharedPointer<QWaylandShmBuffer> buffer(new QWaylandShmBuffer(mDisplay, img.size(), img.format()));
|
||||
memcpy(buffer->image()->bits(), img.bits(), img.byteCount());
|
||||
memcpy(buffer->image()->bits(), img.bits(), img.sizeInBytes());
|
||||
return buffer;
|
||||
}
|
||||
|
||||
|
@ -125,7 +125,7 @@ QWaylandShmBuffer::~QWaylandShmBuffer(void)
|
||||
{
|
||||
delete mMarginsImage;
|
||||
if (mImage.constBits())
|
||||
munmap((void *) mImage.constBits(), mImage.byteCount());
|
||||
munmap((void *) mImage.constBits(), mImage.sizeInBytes());
|
||||
if (mShmPool)
|
||||
wl_shm_pool_destroy(mShmPool);
|
||||
}
|
||||
@ -287,10 +287,10 @@ void QWaylandShmBackingStore::resize(const QSize &size)
|
||||
buffer = getBuffer(sizeWithMargins);
|
||||
}
|
||||
|
||||
int oldSize = mBackBuffer ? mBackBuffer->image()->byteCount() : 0;
|
||||
qssize_t oldSize = mBackBuffer ? mBackBuffer->image()->sizeInBytes() : 0;
|
||||
// mBackBuffer may have been deleted here but if so it means its size was different so we wouldn't copy it anyway
|
||||
if (mBackBuffer != buffer && oldSize == buffer->image()->byteCount()) {
|
||||
memcpy(buffer->image()->bits(), mBackBuffer->image()->constBits(), buffer->image()->byteCount());
|
||||
if (mBackBuffer != buffer && oldSize == buffer->image()->sizeInBytes()) {
|
||||
memcpy(buffer->image()->bits(), mBackBuffer->image()->constBits(), buffer->image()->sizeInBytes());
|
||||
}
|
||||
mBackBuffer = buffer;
|
||||
// ensure the new buffer is at the beginning of the list so next time getBuffer() will pick
|
||||
|
Loading…
x
Reference in New Issue
Block a user