HomeSort by relevance Sort by last modified time
    Searched full:readpixels (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/skia/tests/
PremulAlphaRoundTripTest.cpp 89 canvas.readPixels(&readBmp1, 0, 0, gUnpremulConfigs[upmaIdx]);
91 canvas.readPixels(&readBmp2, 0, 0, gUnpremulConfigs[upmaIdx]);
ReadWriteAlphaTest.cpp 63 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
91 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
ReadPixelsTest.cpp 166 // checks the bitmap contains correct pixels after the readPixels
168 // overwritten in the area outside the readPixels.
351 // if the bitmap has pixels allocated before the readPixels,
359 canvas.readPixels(&bmp, srcRect.fLeft,
375 // if we had no pixels beforehand and the readPixels
380 // check the old webkit version of readPixels that clips the
383 bool success = canvas.readPixels(srcRect, &wkbmp);
400 DEFINE_GPUTESTCLASS("ReadPixels", ReadPixelsTestClass, ReadPixelsTest)
GpuBitmapCopyTest.cpp 80 bool readBack = src.pixelRef()->readPixels(&srcReadBack, subset);
84 bool readBack = dst.pixelRef()->readPixels(&dstReadBack, subset);
  /external/skia/bench/
ReadPixBench.cpp 50 canvas->readPixels(&bitmap, x * offX, y * offY);
  /external/skia/include/gpu/gl/
GrGLConfig_chrome.h 17 // For RGBA teximage/readpixels ANGLE will sw-convert to/from BGRA.
  /external/skia/src/gpu/
GrRenderTarget.cpp 18 bool GrRenderTarget::readPixels(int left, int top, int width, int height,
SkGrPixelRef.cpp 32 // SkDebugf("---------- calling readpixels in support of lockpixels\n");
176 return fSurface->readPixels(left, top, width, height,
GrGpu.h 168 * readPixels with some configs may be slow. Given a desired config this
171 * result and call readPixels with the original config.
187 * OpenGL's readPixels returns the result bottom-to-top while the skia
200 * @return true if calling readPixels with the same set of params will
235 bool readPixels(GrRenderTarget* renderTarget,
GrTexture.cpp 41 bool GrTexture::readPixels(int left, int top, int width, int height,
  /external/skia/tools/
CopyTilesRenderer.cpp 70 dst.pixelRef()->readPixels(&copy, &subset);
PictureRenderer.cpp 217 canvas->readPixels(&bitmap, 0, 0);
293 fCanvas->readPixels(*out, 0, 0);
325 fCanvas->readPixels(*out, 0, 0);
527 if (fCanvas->readPixels(&bitmap, 0, 0)) {
612 if (fCanvas->readPixels(&bitmap, 0, 0)) {
  /external/webkit/Source/WebCore/html/canvas/
WebGLFramebuffer.h 56 // readPixels, copyTexImage2D, copyTexSubImage2D if this framebuffer is
  /external/skia/legacy/include/core/
SkDevice.h 262 * automatically. If the bitmap is backed by a texture readPixels will
271 * * If the device is not a raster device (e.g. PDF) then readPixels will
273 * * If bitmap is texture-backed then readPixels will fail. (This may be
276 bool readPixels(SkBitmap* bitmap,
299 * Implements readPixels API. The caller will ensure that:
  /external/skia/include/gpu/
GrSurface.h 81 virtual bool readPixels(int left, int top, int width, int height,
GrTexture.h 56 virtual bool readPixels(int left, int top, int width, int height,
GrRenderTarget.h 46 virtual bool readPixels(int left, int top, int width, int height,
  /external/skia/src/core/
SkPixelRef.cpp 165 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
  /external/skia/src/gpu/gl/angle/
GrGLCreateANGLEInterface.cpp 88 GR_GET_PROC(GrGLReadPixelsProc, ReadPixels);
  /external/skia/src/gpu/gl/mesa/
GrGLCreateMesaInterface.cpp 111 GR_GL_GET_PROC(ReadPixels);
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 237 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, firstRead);
246 readTex->readPixels(0, 0, 256, 256, kRGBA_8888_GrPixelConfig, secondRead);
  /external/skia/include/core/
SkDevice.h 332 * automatically. If the bitmap is backed by a texture readPixels will
341 * * If the device is not a raster device (e.g. PDF) then readPixels will
343 * * If bitmap is texture-backed then readPixels will fail. (This may be
346 bool readPixels(SkBitmap* bitmap,
369 * Implements readPixels API. The caller will ensure that:
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 226 srcDevice.readPixels(SkIRect::MakeXYWH(originX, originY, numColumns, numRows), &srcBitmap);
380 // if we can't see the pixels directly, call readPixels() to get a copy.
386 if (!device->readPixels(bounds, &bitmap))
  /external/skia/src/gpu/gl/
GrGLCaps.cpp 159 // ReadPixels. The other format has to checked at run-time since it
190 // The other supported format/type combo supported for ReadPixels
  /external/skia/legacy/src/core/
SkPixelRef.cpp 148 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {

Completed in 1273 milliseconds

1 2 3