Home
last modified time | relevance | path

Searched refs:pixelRef (Results 1 – 21 of 21) sorted by relevance

/external/skia/include/core/
DSkPixelRef.h30 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \ argument
31 static SkPixelRef::Registrar g##pixelRef##Reg(#pixelRef, \
32 pixelRef::Create);
38 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \ argument
39 void pixelRef::Init() { \
40 SkPixelRef::Registrar(#pixelRef, Create); \
DSkDevice.h291 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); } in getPixelRef()
DSkBitmap.h300 SkPixelRef* pixelRef() const { return fPixelRef; } in pixelRef() function
/external/chromium/chrome/browser/ui/views/tabs/
Dtab_renderer_data.cc22 favicon.pixelRef() && in Equals()
23 favicon.pixelRef() == data.favicon.pixelRef() && in Equals()
/external/skia/src/core/
DSkBitmapProcShader.cpp175 SkASSERT(state.fBitmap->pixelRef() == NULL || in shadeSpan()
176 state.fBitmap->pixelRef()->isLocked()); in shadeSpan()
219 SkASSERT(state.fBitmap->pixelRef() == NULL || in shadeSpan16()
220 state.fBitmap->pixelRef()->isLocked()); in shadeSpan16()
306 SkPixelRef* pr = fRawBitmap.pixelRef(); in toDumpString()
DSkBitmap.cpp469 dst == NULL || (getPixels() == NULL && pixelRef() == NULL)) in copyPixelsTo()
964 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstConfig); in deepCopyTo() local
965 if (pixelRef) { in deepCopyTo()
967 dst->setPixelRef(pixelRef)->unref(); in deepCopyTo()
/external/webkit/Source/WebCore/platform/graphics/android/
DImageSourceAndroid.cpp317 ref = bm->pixelRef(); in setData()
381 SkPixelRef* pixelRef = bitmap.pixelRef(); in createFrameAtIndex() local
382 if (pixelRef) in createFrameAtIndex()
383 pixelRef->setURI(m_decoder.m_url); in createFrameAtIndex()
DImageAndroid.cpp188 if (bitmap.getPixels() == NULL && bitmap.pixelRef() == NULL) { in draw()
192 bitmap.getPixels(), bitmap.pixelRef()); in draw()
242 if (origBitmap.getPixels() == NULL && origBitmap.pixelRef() == NULL) in drawPattern()
/external/skia/src/gpu/
DSkGrTexturePixelRef.cpp74 SkGrTexturePixelRef* pixelRef = new SkGrTexturePixelRef(dst); in copyToTexturePixelRef() local
76 return pixelRef; in copyToTexturePixelRef()
/external/skia/tests/
DDeferredCanvasTest.cpp36 REPORTER_ASSERT(reporter, accessed.pixelRef() == store.pixelRef()); in TestDeferredCanvasBitmapAccess()
/external/skia/samplecode/
DSamplePageFlip.cpp43 SkFlipPixelRef* ref = static_cast<SkFlipPixelRef*>(bm->pixelRef()); in draw_proc()
DSampleImageDir.cpp39 if (!bitmap.pixelRef()) { in drawmarshmallow()
/external/skia/src/images/
DSkImageRef.cpp68 if (bitmap && bitmap->pixelRef() == this) { in isOpaque()
DSkImageDecoder.cpp234 bm->pixelRef()->setURI(file); in DecodeFile()
/external/chromium/chrome/browser/ui/gtk/
Dtask_manager_gtk.cc724 if (icon.pixelRef() == in GetModelIcon()
726 IDR_DEFAULT_FAVICON)->pixelRef()) { in GetModelIcon()
Dlocation_bar_view_gtk.cc1506 if (icon.pixelRef() != last_icon_skbitmap_.pixelRef()) { in UpdateVisibility()
/external/chromium/chrome/browser/ui/gtk/tabs/
Dtab_renderer_gtk.cc311 (data_.favicon.pixelRef() == in UpdateData()
313 IDR_DEFAULT_FAVICON)->pixelRef()); in UpdateData()
/external/skia/src/utils/
DSkDumpCanvas.cpp116 SkPixelRef* pr = bm.pixelRef(); in toString()
/external/webkit/Source/WebKit/android/WebCoreSupport/
DMediaPlayerPrivateAndroid.cpp260 if (!m_poster || (!m_poster->getPixels() && !m_poster->pixelRef())) in paint()
/external/webkit/Source/WebCore/platform/graphics/skia/
DPlatformContextSkia.cpp292 if (!bitmap->pixelRef()) { in beginLayerClippedToImage()
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0675088 Don't use bitmap->pixelRef()->getPixels() directly; prefer