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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 43 fBmp2.allocPixels(info); // used in readPixels()
53 canvas->readPixels(fBmp2.info(), fBmp2.getPixels(), fBmp2.rowBytes(), 0, 0);
ReadPixBench.cpp 51 canvas->readPixels(&bitmap, x * offX, y * offY);
WritePixelsBench.cpp 55 canvas->readPixels(&bmp, 0, 0);
  /external/skia/bench/
PremulAndUnpremulAlphaOpsBench.cpp 43 fBmp2.allocPixels(info); // used in readPixels()
53 canvas->readPixels(fBmp2.info(), fBmp2.getPixels(), fBmp2.rowBytes(), 0, 0);
ReadPixBench.cpp 51 canvas->readPixels(&bitmap, x * offX, y * offY);
WritePixelsBench.cpp 55 canvas->readPixels(&bmp, 0, 0);
  /external/chromium_org/third_party/angle/extensions/
ANGLE_pack_reverse_row_order.txt 47 effectively allows an application to flip the results of a ReadPixels
52 that perform ReadPixels may have to either render to an intermediate color
53 buffer before calling ReadPixels or perform a flip in software after
54 ReadPixels. In some systems the GL can perform the row reversal during
55 ReadPixels without incurring additional cost.
  /external/chromium_org/third_party/skia/tests/
ImageNewShaderTest.cpp 62 sourceSurface->getCanvas()->readPixels(rect, &bmOrig);
66 destinationCanvas->readPixels(rect, &bm);
89 destinationCanvas->readPixels(rect, &bmt);
ReadPixelsTest.cpp 151 // checks the bitmap contains correct pixels after the readPixels
153 // overwritten in the area outside the readPixels.
244 DEF_GPUTEST(ReadPixels, reporter, factory) {
348 // if the bitmap has pixels allocated before the readPixels,
355 bool success = canvas.readPixels(&bmp, srcRect.fLeft, srcRect.fTop);
370 // if we had no pixels beforehand and the readPixels
375 // check the old webkit version of readPixels that clips the
378 bool success = canvas.readPixels(srcRect, &wkbmp);
ReadWriteAlphaTest.cpp 67 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
96 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
  /external/skia/tests/
ReadPixelsTest.cpp 152 // checks the bitmap contains correct pixels after the readPixels
154 // overwritten in the area outside the readPixels.
245 DEF_GPUTEST(ReadPixels, reporter, factory) {
350 // if the bitmap has pixels allocated before the readPixels,
357 bool success = canvas.readPixels(&bmp, srcRect.fLeft, srcRect.fTop);
372 // if we had no pixels beforehand and the readPixels
377 // check the old webkit version of readPixels that clips the
380 bool success = canvas.readPixels(srcRect, &wkbmp);
ReadWriteAlphaTest.cpp 67 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
95 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
  /external/chromium_org/content/test/data/gpu/
gpu_process_crash.html 30 gl.readPixels(0, 0, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, pixels);
webgl.html 26 gl.readPixels(0, 0, w, h, gl.RGBA, gl.UNSIGNED_BYTE, array);
52 gl.readPixels(0, 0, w, h, gl.RGBA, gl.UNSIGNED_BYTE, a);
  /external/chromium_org/gpu/command_buffer/tests/
gl_test_utils.h 48 // Uses ReadPixels to save an area of the current FBO/Backbuffer.
  /external/chromium_org/media/filters/
mock_gpu_video_accelerator_factories.h 42 MOCK_METHOD3(ReadPixels,
  /external/chromium_org/third_party/WebKit/PerformanceTests/Canvas/
upload-canvas-2d-to-texture.html 42 gl.readPixels(0, 0, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, new Uint8Array(4));
  /external/chromium_org/third_party/skia/dm/
DMGpuGMTask.cpp 45 canvas->readPixels(&bitmap, 0, 0);
  /external/chromium_org/third_party/skia/include/gpu/gl/
GrGLConfig_chrome.h 18 // For RGBA teximage/readpixels ANGLE will sw-convert to/from BGRA.