зеркало из https://github.com/mozilla/moz-skia.git
fix bug in legacy code for SK_SUPPORT_LEGACY_IMAGEGENERATORAPI
git-svn-id: http://skia.googlecode.com/svn/trunk@14967 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
37c772ae2d
Коммит
672e7cf9c4
|
@ -64,7 +64,11 @@ bool SkDiscardablePixelRef::onNewLockPixels(LockRec* rec) {
|
|||
SkPMColor colors[256];
|
||||
int colorCount = 0;
|
||||
|
||||
#ifdef SK_SUPPORT_LEGACY_IMAGEGENERATORAPI
|
||||
if (!fGenerator->getPixels(info, pixels, fRowBytes)) {
|
||||
#else
|
||||
if (!fGenerator->getPixels(info, pixels, fRowBytes, colors, &colorCount)) {
|
||||
#endif
|
||||
fDiscardableMemory->unlock();
|
||||
SkDELETE(fDiscardableMemory);
|
||||
fDiscardableMemory = NULL;
|
||||
|
|
Загрузка…
Ссылка в новой задаче