Searched refs:writePixels (Results 1 - 25 of 27) sorted by relevance

12

/external/skia/samplecode/
H A DSampleWritePixels.cpp57 canvas->writePixels(bitmap, 0, 0);
58 canvas->writePixels(subset, 0, 0);
/external/skia/bench/
H A DPremulAndUnpremulAlphaOpsBench.cpp34 fBmp1.allocPixels(info); // used in writePixels
51 canvas->writePixels(fBmp1.info(), fBmp1.getPixels(), fBmp1.rowBytes(), 0, 0);
H A DWritePixelsBench.cpp60 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0);
/external/skia/include/gpu/
H A DGrSurface.h108 bool writePixels(int left, int top, int width, int height,
/external/skia/gm/
H A Dstroketext.cpp24 c.writePixels(src, 0, 0);
H A Dtexdata.cpp125 texture->writePixels(S, (i ? 0 : S), S, S,
/external/skia/src/gpu/
H A DGrSurface.cpp16 bool GrSurface::writePixels(int left, int top, int width, int height, function in class:GrSurface
H A DGrAtlas.cpp96 fTexture->writePixels(loc->fX, loc->fY, width, height, fTexture->config(), image, 0,
125 fTexture->writePixels(fOffset.fX + fDirtyRect.fLeft, fOffset.fY + fDirtyRect.fTop,
H A DGrTextureProvider.cpp33 if (!srcData || texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
89 // writePixels() which will trigger a flush if the texture has pending IO.
H A DGrSWMaskHelper.cpp265 texture->writePixels(0, 0, desc.fWidth, desc.fHeight,
H A DSkGr.cpp376 !yuvTextures[i]->writePixels(0, 0, yuvDesc.fWidth, yuvDesc.fHeight,
/external/skia/tests/
H A DReadWriteAlphaTest.cpp59 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
H A DPremulAlphaRoundTripTest.cpp63 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0);
H A DDeferredCanvasTest.cpp139 // Case 2: Opaque writePixels
146 // Case 3: writePixels that partially covers the canvas
153 // Case 4: unpremultiplied opaque writePixels that entirely
162 canvas->writePixels(srcBitmap, 0, 0);
173 // Case 5: unpremultiplied opaque writePixels that partially
182 canvas->writePixels(srcBitmap, 5, 0);
193 // Case 6: unpremultiplied opaque writePixels that entirely
208 canvas->writePixels(srcBitmap, 0, 0);
219 // Case 7: unpremultiplied opaque writePixels that partially
234 canvas->writePixels(srcBitma
[all...]
H A DWritePixelsTest.cpp347 canvas->writePixels(info, &pixel, sizeof(SkPMColor), 0, 0);
462 canvas.writePixels(bmp, rect.fLeft, rect.fTop);
H A DSurfaceTest.cpp679 tex->writePixels(0, 0, w, h, kSkia8888_GrPixelConfig, storage, GrContext::kFlushWrites_PixelOp);
/external/skia/tools/
H A Dsk_tool_utils.cpp61 canvas->writePixels(info, tmp.getPixels(), tmp.rowBytes(), x, y);
/external/skia/example/
H A DHelloWorld.cpp164 fRenderTarget->writePixels(0, 0, snap->width(), snap->height(),
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DAnimatedGifEncoder.java176 writePixels(); // encode and write pixel data
510 private void writePixels() throws IOException { method in class:AnimatedGifEncoder
/external/skia/include/core/
H A DSkDevice.h83 bool writePixels(const SkImageInfo&, const void*, size_t rowBytes, int x, int y);
H A DSkCanvas.h272 bool writePixels(const SkImageInfo&, const void* pixels, size_t rowBytes, int x, int y);
275 * Helper for calling writePixels(info, ...) by passing its pixels and rowbytes. If the bitmap
278 bool writePixels(const SkBitmap& bitmap, int x, int y);
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp162 fTexture->writePixels(0, rowNumber * fDesc.fRowHeight,
/external/skia/src/core/
H A DSkDevice.cpp201 bool SkBaseDevice::writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, function in class:SkBaseDevice
H A DSkCanvas.cpp762 bool SkCanvas::writePixels(const SkBitmap& bitmap, int x, int y) { function in class:SkCanvas
769 return this->writePixels(bm.info(), bm.getPixels(), bm.rowBytes(), x, y);
774 bool SkCanvas::writePixels(const SkImageInfo& origInfo, const void* pixels, size_t rowBytes, function in class:SkCanvas
815 return device->writePixels(info, pixels, rowBytes, target.x(), target.y());
/external/opencv/otherlibs/highgui/
H A Dgrfmt_exr.cpp667 file.writePixels( height );
720 file.writePixels( 1 );

Completed in 406 milliseconds

12