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

  /external/skia/include/core/
SkPixelRef.h 30 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \
31 static SkPixelRef::Registrar g##pixelRef##Reg(#pixelRef, \
32 pixelRef::Create);
38 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \
39 void pixelRef::Init() { \
40 SkPixelRef::Registrar(#pixelRef, Create); \
48 SkBitmap. A pixelref is installed into a bitmap, and then the bitmap can
91 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
102 /** Returns true if this pixelref is marked as immutable, meaning that th
    [all...]
SkDevice.h 291 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
292 // just for subclasses, to assign a custom pixelref
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/views/tabs/
tab_renderer_data.cc 22 favicon.pixelRef() &&
23 favicon.pixelRef() == data.favicon.pixelRef() &&
  /external/skia/src/core/
SkBitmapProcShader.cpp 175 SkASSERT(state.fBitmap->pixelRef() == NULL ||
176 state.fBitmap->pixelRef()->isLocked());
219 SkASSERT(state.fBitmap->pixelRef() == NULL ||
220 state.fBitmap->pixelRef()->isLocked());
305 // add the pixelref
306 SkPixelRef* pr = fRawBitmap.pixelRef();
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/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 317 ref = bm->pixelRef();
381 SkPixelRef* pixelRef = bitmap.pixelRef();
382 if (pixelRef)
383 pixelRef->setURI(m_decoder.m_url);
ImageAndroid.cpp 188 if (bitmap.getPixels() == NULL && bitmap.pixelRef() == NULL) {
190 SkDebugf("----- skip bitmapimage: [%d %d] pixels %p pixelref %p\n",
192 bitmap.getPixels(), bitmap.pixelRef());
242 if (origBitmap.getPixels() == NULL && origBitmap.pixelRef() == NULL)
  /external/skia/src/gpu/
SkGrTexturePixelRef.cpp 74 SkGrTexturePixelRef* pixelRef = new SkGrTexturePixelRef(dst);
76 return pixelRef;
  /external/skia/tests/
DeferredCanvasTest.cpp 36 REPORTER_ASSERT(reporter, accessed.pixelRef() == store.pixelRef());
  /frameworks/base/libs/hwui/
ResourceCache.cpp 60 SkSafeRef(bitmapResource->pixelRef());
93 SkSafeUnref(bitmapResource->pixelRef());
  /external/skia/samplecode/
SamplePageFlip.cpp 43 SkFlipPixelRef* ref = static_cast<SkFlipPixelRef*>(bm->pixelRef());
SampleImageDir.cpp 39 if (!bitmap.pixelRef()) {
  /external/skia/src/images/
SkImageRef.cpp 68 if (bitmap && bitmap->pixelRef() == this) {
SkImageDecoder.cpp 234 bm->pixelRef()->setURI(file);
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 352 SkASSERT(bitmap->pixelRef());
535 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(fBuffer);
541 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(NULL);
BitmapFactory.cpp 369 // already have a pixelref installed.
370 pr = bitmap->pixelRef();
  /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/src/utils/
SkDumpCanvas.cpp 116 SkPixelRef* pr = bm.pixelRef();
125 str->appendf(" pixelref:%p", pr);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 260 if (!m_poster || (!m_poster->getPixels() && !m_poster->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");

Completed in 279 milliseconds