HomeSort by relevance Sort by last modified time
    Searched refs:pixelRef (Results 26 - 39 of 39) sorted by null

12

  /external/skia/tests/
DeferredCanvasTest.cpp 37 REPORTER_ASSERT(reporter, accessed.pixelRef() == store.pixelRef());
PictureTest.cpp 169 // corresponding bitmap/pixelref
172 refs[i] = bm[i].pixelRef();
  /external/skia/include/core/
SkBitmap.h 96 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
173 underlying pixelref. This state can be set, but it cannot be
175 that share the same pixelref.
256 will automatically release any pixelref previously installed. Only call
289 /** Use the standard HeapAllocator to create the pixelref that manages the
291 If this is called multiple times, a new pixelref object will be created
299 @return true if the allocation succeeds. If not the pixelref field of
306 /** Use the specified Allocator to create the pixelref that manages the
308 If this is called multiple times, a new pixelref object will be created
314 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/skia/legacy/src/core/
SkBitmap.cpp 109 1. no pixelref, in which case we just copy/ref the pixels/ctable
110 2. unlocked pixelref, pixels/ctable should be null
111 3. locked pixelref, we should lock the ref again ourselves
116 } else { // we have a pixelref, so pixels/ctable reflect it
469 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
827 // share the pixelref with a custom offset
961 // If we have a PixelRef, and it supports deep copy, use it.
964 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstConfig);
965 if (pixelRef) {
967 dst->setPixelRef(pixelRef)->unref()
    [all...]
  /external/skia/legacy/include/core/
SkBitmap.h 91 /** Return true iff the bitmap has no pixels nor a pixelref. Note: this can
168 underlying pixelref. This state can be set, but it cannot be
170 that share the same pixelref.
227 will automatically release any pixelref previously installed. Only call
260 /** Use the standard HeapAllocator to create the pixelref that manages the
262 If this is called multiple times, a new pixelref object will be created
270 @return true if the allocation succeeds. If not the pixelref field of
277 /** Use the specified Allocator to create the pixelref that manages the
279 If this is called multiple times, a new pixelref object will be created
285 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.cc 311 (data_.favicon.pixelRef() ==
313 IDR_DEFAULT_FAVICON)->pixelRef());
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.cc 724 if (icon.pixelRef() ==
726 IDR_DEFAULT_FAVICON)->pixelRef()) {
    [all...]
location_bar_view_gtk.cc     [all...]
  /external/skia/legacy/src/utils/
SkDumpCanvas.cpp 116 SkPixelRef* pr = bm.pixelRef();
125 str->appendf(" pixelref:%p", pr);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 286 if (!m_poster || (!m_poster->getPixels() && !m_poster->pixelRef()))
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 380 // already have a pixelref installed.
381 pr = bitmap->pixelRef();
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.cpp 292 if (!bitmap->pixelRef()) {
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 282 SkPixelRef* ref = nativeBitmap ? nativeBitmap->pixelRef() : 0;
284 jniThrowException(_env, "java/lang/IllegalArgumentException", "Bitmap has no PixelRef");
  /external/skia/src/core/
SkCanvas.cpp 62 * Some pixelref subclasses can support being "locked" from another thread
68 * pixelref, which could tell us at runtime if this check is valid. That would
79 AutoCheckLockCountBalance(const SkBitmap& bm) : fPixelRef(bm.pixelRef()) {
    [all...]

Completed in 673 milliseconds

12