/external/skia/tests/ |
GpuBitmapCopyTest.cpp | 66 bool readBack = src.pixelRef()->readPixels(&srcReadBack); 70 bool readBack = dst.pixelRef()->readPixels(&dstReadBack);
|
ReadPixelsTest.cpp | 164 // checks the bitmap contains correct pixels after the readPixels 166 // overwritten in the area outside the readPixels. 362 // if the bitmap has pixels allocated before the readPixels, 370 canvas.readPixels(&bmp, srcRect.fLeft, 386 // if we had no pixels beforehand and the readPixels 391 // check the old webkit version of readPixels that clips the 394 bool success = canvas.readPixels(srcRect, &wkbmp); 411 DEFINE_GPUTESTCLASS("ReadPixels", ReadPixelsTestClass, ReadPixelsTest)
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
DeferredImageDecoderTest.cpp | 174 ASSERT_TRUE(m_canvas->readPixels(&canvasBitmap, 0, 0)); 200 ASSERT_TRUE(m_canvas->readPixels(&canvasBitmap, 0, 0)); 233 ASSERT_TRUE(m_canvas->readPixels(&canvasBitmap, 0, 0));
|
ImageBuffer.cpp | 330 context->readPixels(&destBitmap, rect.x(), rect.y(), config8888);
|
/external/chromium_org/third_party/skia/include/gpu/ |
GrTexture.h | 65 virtual bool readPixels(int left, int top, int width, int height,
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrTexture.cpp | 47 bool GrTexture::readPixels(int left, int top, int width, int height,
|
SkGrPixelRef.cpp | 31 // SkDebugf("---------- calling readpixels in support of lockpixels\n"); 184 return fSurface->readPixels(left, top, width, height,
|
GrGpu.h | 171 * OpenGL's readPixels returns the result bottom-to-top while the skia 184 * @return true if calling readPixels with the same set of params will 219 bool readPixels(GrRenderTarget* renderTarget,
|
/external/skia/include/gpu/ |
GrTexture.h | 65 virtual bool readPixels(int left, int top, int width, int height,
|
/external/skia/src/gpu/ |
GrTexture.cpp | 47 bool GrTexture::readPixels(int left, int top, int width, int height,
|
SkGrPixelRef.cpp | 31 // SkDebugf("---------- calling readpixels in support of lockpixels\n"); 184 return fSurface->readPixels(left, top, width, height,
|
GrGpu.h | 171 * OpenGL's readPixels returns the result bottom-to-top while the skia 184 * @return true if calling readPixels with the same set of params will 219 bool readPixels(GrRenderTarget* renderTarget,
|
/external/skia/tools/ |
PictureRenderer.cpp | 280 canvas->readPixels(&bitmap, 0, 0); 376 fCanvas->readPixels(*out, 0, 0); 408 fCanvas->readPixels(*out, 0, 0); 621 if (fCanvas->readPixels(&bitmap, 0, 0)) { 708 if (fCanvas->readPixels(&bitmap, 0, 0)) {
|
/external/chromium_org/third_party/skia/include/core/ |
SkCanvas.h | 168 * automatically. If the bitmap is backed by a texture readPixels will 178 * readPixels will fail. 179 * * If bitmap is texture-backed then readPixels will fail. (This may be 187 * if (canvas->readPixels(bitmap, 0, 0)) { 191 bool readPixels(SkBitmap* bitmap, 201 bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap); [all...] |
SkDevice.h | 304 * automatically. If the bitmap is backed by a texture readPixels will 313 * * If the device is not a raster device (e.g. PDF) then readPixels will 315 * * If bitmap is texture-backed then readPixels will fail. (This may be 318 bool readPixels(SkBitmap* bitmap, 331 * Implements readPixels API. The caller will ensure that:
|
/external/skia/include/core/ |
SkCanvas.h | 168 * automatically. If the bitmap is backed by a texture readPixels will 178 * readPixels will fail. 179 * * If bitmap is texture-backed then readPixels will fail. (This may be 187 * if (canvas->readPixels(bitmap, 0, 0)) { 191 bool readPixels(SkBitmap* bitmap, 201 bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap); [all...] |
SkDevice.h | 304 * automatically. If the bitmap is backed by a texture readPixels will 313 * * If the device is not a raster device (e.g. PDF) then readPixels will 315 * * If bitmap is texture-backed then readPixels will fail. (This may be 318 bool readPixels(SkBitmap* bitmap, 331 * Implements readPixels API. The caller will ensure that:
|
/external/chromium_org/content/browser/renderer_host/ |
backing_store_aura.cc | 170 if (!canvas_->readPixels(skrect, &b))
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
Renderer.h | 207 virtual void readPixels(gl::Framebuffer *framebuffer, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type,
|
/external/chromium_org/third_party/skia/src/core/ |
SkPixelRef.cpp | 273 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
|
/external/skia/src/core/ |
SkPixelRef.cpp | 273 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
RenderEngine.cpp | 204 void RenderEngine::readPixels(size_t l, size_t b, size_t w, size_t h, uint32_t* pixels) {
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/ |
FECustomFilter.cpp | 193 m_context->readPixels(0, 0, newContextSize.width(), newContextSize.height(), GL_RGBA, GL_UNSIGNED_BYTE, dstPixelArray->data());
|
/external/chromium_org/cc/test/ |
layer_tree_pixel_test.cc | 270 context3d->readPixels(0,
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Context.h | 346 void readPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei *bufSize, void* pixels);
|