summaryrefslogtreecommitdiffstats
path: root/image
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-11-21 14:08:00 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-11-21 14:08:00 +0100
commit5b821064f29962f80d6a683fcdf1a163c18fbf99 (patch)
tree2c557fb2daa3d83aa556f53855280906fe17b99b /image
parentb9003c9c5d3c86f941dbf50de1cf8253072a9c85 (diff)
downloadUXP-5b821064f29962f80d6a683fcdf1a163c18fbf99.tar
UXP-5b821064f29962f80d6a683fcdf1a163c18fbf99.tar.gz
UXP-5b821064f29962f80d6a683fcdf1a163c18fbf99.tar.lz
UXP-5b821064f29962f80d6a683fcdf1a163c18fbf99.tar.xz
UXP-5b821064f29962f80d6a683fcdf1a163c18fbf99.zip
Unrefactor mRawVeggies back to mVBuffMeat ;P
(mRawSurface -> mVBuf)
Diffstat (limited to 'image')
-rw-r--r--image/imgFrame.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/image/imgFrame.cpp b/image/imgFrame.cpp
index af84d8cbb..c9f44181d 100644
--- a/image/imgFrame.cpp
+++ b/image/imgFrame.cpp
@@ -252,13 +252,13 @@ imgFrame::InitForDecoder(const nsIntSize& aImageSize,
} else {
MOZ_ASSERT(!mImageSurface, "Called imgFrame::InitForDecoder() twice?");
- mRawSurface = AllocateBufferForImage(mFrameRect.Size(), mFormat);
- if (!mRawSurface) {
+ mVBuf = AllocateBufferForImage(mFrameRect.Size(), mFormat);
+ if (!mVBuf) {
mAborted = true;
return NS_ERROR_OUT_OF_MEMORY;
}
- mImageSurface = CreateLockedSurface(mRawSurface, mFrameRect.Size(), mFormat);
+ mImageSurface = CreateLockedSurface(mVBuf, mFrameRect.Size(), mFormat);
if (!mImageSurface) {
NS_WARNING("Failed to create ImageSurface");
@@ -266,7 +266,7 @@ imgFrame::InitForDecoder(const nsIntSize& aImageSize,
return NS_ERROR_OUT_OF_MEMORY;
}
- if (!ClearSurface(mRawSurface, mFrameRect.Size(), mFormat)) {
+ if (!ClearSurface(mVBuf, mFrameRect.Size(), mFormat)) {
NS_WARNING("Could not clear allocated buffer");
mAborted = true;
return NS_ERROR_OUT_OF_MEMORY;