From 12f752723b31bb015ded118bfa466c2f1e9b2905 Mon Sep 17 00:00:00 2001 From: cblume Date: Mon, 19 Sep 2016 06:18:03 -0700 Subject: Remove release asserts. A handful of changes were added to investigate a bug occurring rarely. The bug has been found and those changes can be reverted. BUG=643845 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2347423002 Review-Url: https://codereview.chromium.org/2347423002 --- src/image/SkImage_Gpu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/image') diff --git a/src/image/SkImage_Gpu.cpp b/src/image/SkImage_Gpu.cpp index 7eb728f55d..55fb47a75d 100644 --- a/src/image/SkImage_Gpu.cpp +++ b/src/image/SkImage_Gpu.cpp @@ -625,11 +625,11 @@ size_t SkImage::getDeferredTextureImageData(const GrContextThreadSafeProxy& prox mipmaps->getLevel(generatedMipLevelIndex, &mipLevel); // Make sure the mipmap data is after the start of the buffer - SkASSERT_RELEASE(mipLevelPtr > bufferAsInt); + SkASSERT(mipLevelPtr > bufferAsInt); // Make sure the mipmap data starts before the end of the buffer - SkASSERT_RELEASE(static_cast(mipLevelPtr) < bufferAsInt + pixelOffset + pixelSize); + SkASSERT(static_cast(mipLevelPtr) < bufferAsInt + pixelOffset + pixelSize); // Make sure the mipmap data ends before the end of the buffer - SkASSERT_RELEASE(mipLevelPtr + mipLevel.fPixmap.getSafeSize() <= + SkASSERT(mipLevelPtr + mipLevel.fPixmap.getSafeSize() <= bufferAsInt + pixelOffset + pixelSize); // getSafeSize includes rowbyte padding except for the last row, -- cgit v1.2.3