Searched refs:peekPixels (Results 1 - 20 of 20) sorted by relevance

/external/skia/debugger/QT/
H A DSkRasterWidget.cpp53 if (const void* pixels = fSurface->peekPixels(&info, &rowBytes)) {
H A DSkDrawCommandGeometryWidget.cpp46 if (const void* pixels = fSurface->peekPixels(&info, &rowBytes)) {
/external/skia/gm/
H A Dblend.cpp39 if (const SkPMColor* px = (const SkPMColor*)canvas->peekPixels(NULL, NULL)) {
H A Dpeekpixels.cpp44 // test peekPixels
48 const void* addr = surfCanvas->peekPixels(&info, &rowBytes);
/external/skia/src/image/
H A DSkSurface.cpp169 const void* SkSurface::peekPixels(SkImageInfo* info, size_t* rowBytes) { function in class:SkSurface
170 return this->getCanvas()->peekPixels(info, rowBytes);
H A DSkImage.cpp28 const void* SkImage::peekPixels(SkImageInfo* info, size_t* rowBytes) const { function in class:SkImage
/external/skia/include/core/
H A DSkImage.h110 const void* peekPixels(SkImageInfo* info, size_t* rowBytes) const;
H A DSkSurface.h202 const void* peekPixels(SkImageInfo* info, size_t* rowBytes);
H A DSkBitmapDevice.h147 const void* peekPixels(SkImageInfo*, size_t* rowBytes) override;
H A DSkDevice.h287 virtual const void* peekPixels(SkImageInfo*, size_t* rowBytes);
H A DSkCanvas.h61 * flush() or call peekPixels(...).
215 const void* peekPixels(SkImageInfo* info, size_t* rowBytes);
1449 * call canvas->peekPixels(), since that is the fastest way to "peek" at the
1453 * (e.g. gpu-backed), then peekPixels() will fail, but readPixels() will
1457 * peekPixels() (for performance), but if that fails, calling readPixels() and
1460 * The caller must respect the restrictions associated with peekPixels(), since
1479 // that the bitmap may reference the address returned by peekPixels(), so
1480 // the caller must respect the restrictions associated with peekPixels().
1484 SkBitmap fBitmap; // used if peekPixels() fails
/external/skia/example/
H A DHelloWorld.cpp163 const void* pixels = snap->peekPixels(&info, &rowBytes);
/external/skia/tests/
H A DSurfaceTest.cpp268 const void* addr = image->peekPixels(&info, &rowBytes);
330 const void* addr = surface->getCanvas()->peekPixels(&info, &rowBytes);
336 const void* addr2 = surface->peekPixels(&info2, &rb2);
H A DCanvasTest.cpp703 const SkPMColor* addr = (const SkPMColor*)canvas->peekPixels(&info2, &rowBytes);
H A DDeferredCanvasTest.cpp704 return surface->peekPixels(NULL, NULL);
/external/skia/src/core/
H A DSkBitmapDevice.cpp357 const void* SkBitmapDevice::peekPixels(SkImageInfo* info, size_t* rowBytes) { function in class:SkBitmapDevice
H A DSkDevice.cpp96 const void* SkBaseDevice::peekPixels(SkImageInfo*, size_t*) { return NULL; } function in class:SkBaseDevice
H A DSkCanvas.cpp1132 const void* SkCanvas::peekPixels(SkImageInfo* info, size_t* rowBytes) { function in class:SkCanvas
1138 return dev ? dev->peekPixels(info, rowBytes) : NULL;
1155 fAddr = canvas->peekPixels(&fInfo, &fRowBytes);
/external/skia/src/utils/android/
H A DSkAndroidSDKCanvas.cpp277 return fProxyTarget->peekPixels(info, data);
/external/skia/dm/
H A DDMSrcSink.cpp70 if (NULL == canvas->peekPixels(&canvasInfo, NULL)) {
190 if (NULL == canvas->peekPixels(&canvasInfo, NULL)) {

Completed in 646 milliseconds