OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkBitmapCache.h" | 8 #include "SkBitmapCache.h" |
9 #include "SkMutex.h" | 9 #include "SkMutex.h" |
10 #include "SkPixelRef.h" | 10 #include "SkPixelRef.h" |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 bool SkPixelRef::onReadPixels(SkBitmap* dst, SkColorType, const SkIRect* subset)
{ | 316 bool SkPixelRef::onReadPixels(SkBitmap* dst, SkColorType, const SkIRect* subset)
{ |
317 return false; | 317 return false; |
318 } | 318 } |
319 | 319 |
320 void SkPixelRef::onNotifyPixelsChanged() { } | 320 void SkPixelRef::onNotifyPixelsChanged() { } |
321 | 321 |
322 SkData* SkPixelRef::onRefEncodedData() { | 322 SkData* SkPixelRef::onRefEncodedData() { |
323 return nullptr; | 323 return nullptr; |
324 } | 324 } |
325 | 325 |
326 bool SkPixelRef::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBy
tes[3], | |
327 SkYUVColorSpace* colorSpace) { | |
328 return false; | |
329 } | |
330 | |
331 size_t SkPixelRef::getAllocatedSizeInBytes() const { | 326 size_t SkPixelRef::getAllocatedSizeInBytes() const { |
332 return 0; | 327 return 0; |
333 } | 328 } |
334 | 329 |
335 static void unlock_legacy_result(void* ctx) { | 330 static void unlock_legacy_result(void* ctx) { |
336 SkPixelRef* pr = (SkPixelRef*)ctx; | 331 SkPixelRef* pr = (SkPixelRef*)ctx; |
337 pr->unlockPixels(); | 332 pr->unlockPixels(); |
338 pr->unref(); // balancing the Ref in onRequestLoc | 333 pr->unref(); // balancing the Ref in onRequestLoc |
339 } | 334 } |
340 | 335 |
341 bool SkPixelRef::onRequestLock(const LockRequest& request, LockResult* result) { | 336 bool SkPixelRef::onRequestLock(const LockRequest& request, LockResult* result) { |
342 if (!this->lockPixelsInsideMutex()) { | 337 if (!this->lockPixelsInsideMutex()) { |
343 return false; | 338 return false; |
344 } | 339 } |
345 | 340 |
346 result->fUnlockProc = unlock_legacy_result; | 341 result->fUnlockProc = unlock_legacy_result; |
347 result->fUnlockContext = SkRef(this); // this is balanced in our fUnlockPr
oc | 342 result->fUnlockContext = SkRef(this); // this is balanced in our fUnlockPr
oc |
348 result->fCTable = fRec.fColorTable; | 343 result->fCTable = fRec.fColorTable; |
349 result->fPixels = fRec.fPixels; | 344 result->fPixels = fRec.fPixels; |
350 result->fRowBytes = fRec.fRowBytes; | 345 result->fRowBytes = fRec.fRowBytes; |
351 result->fSize.set(fInfo.width(), fInfo.height()); | 346 result->fSize.set(fInfo.width(), fInfo.height()); |
352 return true; | 347 return true; |
353 } | 348 } |
OLD | NEW |