Searched defs:readPixels (Results 26 - 27 of 27) sorted by relevance

12

/external/deqp/modules/gles3/functional/
H A Des3fTextureSpecificationTests.cpp164 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
240 readPixels(dst, 0, 0, width, height);
243 void TextureSpecCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height) function in class:deqp::gles3::Functional::TextureSpecCase
/external/skia/src/core/
H A DSkCanvas.cpp702 bool SkCanvas::readPixels(SkBitmap* bitmap, int x, int y) { function in class:SkCanvas
717 if (bm.getPixels() && this->readPixels(bm.info(), bm.getPixels(), bm.rowBytes(), x, y)) {
727 bool SkCanvas::readPixels(const SkIRect& srcRect, SkBitmap* bitmap) { function in class:SkCanvas
739 if (!this->readPixels(bitmap->info(), bitmap->getPixels(), bitmap->rowBytes(), r.x(), r.y())) {
746 bool SkCanvas::readPixels(const SkImageInfo& dstInfo, void* dstP, size_t rowBytes, int x, int y) { function in class:SkCanvas
759 return device->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
1161 if (!canvas->readPixels(&fBitmap, 0, 0)) {

Completed in 181 milliseconds

12