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

1 2 3

  /external/skia/src/gpu/
SkGrTexturePixelRef.cpp 32 // SkDebugf("---------- calling readpixels in support of lockpixels\n");
116 return fTexture->readPixels(left, top, width, height,
173 return fRenderTarget->readPixels(left, top, width, height,
GrTexture.cpp 16 bool GrTexture::readPixels(int left, int top, int width, int height,
GrRenderTarget.cpp 16 bool GrRenderTarget::readPixels(int left, int top, int width, int height,
GrGpu.h 194 * readPixels with some configs may be slow. Given a desired config this
198 * and call readPixels with the original config.
214 * OpenGL's readPixels returns the result bottom-to-top while the skia
227 * @return true if calling readPixels with the same set of params will
265 bool readPixels(GrRenderTarget* renderTarget,
  /external/skia/tests/
PremulAlphaRoundTripTest.cpp 83 canvas.readPixels(&readBmp1, 0, 0, gUnpremulConfigs[upmaIdx]);
85 canvas.readPixels(&readBmp2, 0, 0, gUnpremulConfigs[upmaIdx]);
ReadPixelsTest.cpp 158 // checks the bitmap contains correct pixels after the readPixels
160 // overwritten in the area outside the readPixels.
344 // if the bitmap has pixels allocated before the readPixels,
352 canvas.readPixels(&bmp, srcRect.fLeft,
365 // if we had no pixels beforehand and the readPixels
370 // check the old webkit version of readPixels that clips the
373 bool success = canvas.readPixels(srcRect, &wkbmp);
390 DEFINE_GPUTESTCLASS("ReadPixels", ReadPixelsTestClass, ReadPixelsTest)
  /external/skia/include/gpu/gl/
GrGLConfig_chrome.h 17 // For RGBA teximage/readpixels ANGLE will sw-convert to/from BGRA.
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 34 Provides a mechanism for DrawPixels and ReadPixels to efficiently
61 Accepted by the <format> parameter of ReadPixels and DrawPixels:
65 Accepted by the <type> parameter of ReadPixels and DrawPixels:
78 One entry is added to table 3.5 (DrawPixels and ReadPixels formats).
102 Table 3.5: DrawPixels and ReadPixels formats. The third column
  /external/webkit/Source/WebCore/html/canvas/
WebGLFramebuffer.h 56 // readPixels, copyTexImage2D, copyTexSubImage2D if this framebuffer is
  /external/skia/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:
SkCanvas.h 161 * automatically. If the bitmap is backed by a texture readPixels will
171 * readPixels will fail.
172 * * If bitmap is texture-backed then readPixels will fail. (This may be
180 * if (canvas->readPixels(bitmap, 0, 0)) {
184 bool readPixels(SkBitmap* bitmap,
194 bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap);
    [all...]
SkPixelRef.h 138 bool readPixels(SkBitmap* dst, const SkIRect* subset = NULL);
  /external/mesa3d/docs/
relnotes-7.8.3.html 56 <li>Fix ReadPixels crash when reading depth/stencil from an FBO</li>
relnotes-6.5.2.html 46 <li>Accelerated CopyTexSubimage, DrawPixels, ReadPixels, CopyPixels
RELNOTES-3.3 205 ReadPixels
  /external/skia/include/gpu/
GrTexture.h 70 bool readPixels(int left, int top, int width, int height,
GrRenderTarget.h 140 bool readPixels(int left, int top, int width, int height,
  /external/skia/src/gpu/mesa/
GrGLCreateMesaInterface.cpp 104 GR_GL_GET_PROC(ReadPixels);
  /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/core/
SkPixelRef.cpp 148 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
SkDevice.cpp 116 bool SkDevice::readPixels(SkBitmap* bitmap, int x, int y,
  /external/webkit/Source/WebCore/platform/graphics/gpu/
SharedGraphicsContext3D.h 101 void readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data);
SharedGraphicsContext3D.cpp 225 void SharedGraphicsContext3D::readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data)
227 m_context->readPixels(x, y, width, height, format, type, data);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.h 390 void readPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels);
  /external/webkit/Source/WebKit/chromium/src/
GraphicsContext3DInternal.h 177 void readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data);

Completed in 218 milliseconds

1 2 3