/third_party/skia/samplecode/ |
H A D | SampleWritePixels.cpp | 48 canvas->writePixels(bitmap, 0, 0); 49 canvas->writePixels(subset, 0, 0);
|
/third_party/skia/docs/examples/ |
H A D | gpu8888diff.cpp | 24 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 28 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Color_Type_RGB_565.cpp | 22 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 26 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Color_Type_BGRA_8888.cpp | 22 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 26 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Color_Type_RGBA_8888.cpp | 22 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 26 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Color_Type_ARGB_4444.cpp | 22 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 26 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | gpu4444diff.cpp | 24 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE_SRGB() 28 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE_SRGB()
|
H A D | Color_Type_RGBA_F16.cpp | 44 if (bitmap.writePixels(redPixmap, 0, 0)) { in REG_FIDDLE() 48 if (bitmap.writePixels(bluePixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Surface_writePixels_2.cpp | 10 surf->writePixels(source, 25, 25); in REG_FIDDLE()
|
H A D | Surface_writePixels.cpp | 16 surf->writePixels(pixmap, 25, 25); in REG_FIDDLE()
|
H A D | Bitmap_writePixels_2.cpp | 12 bitmap.writePixels(src); in REG_FIDDLE()
|
H A D | Canvas_writePixels.cpp | 13 canvas->writePixels(imageInfo, &pixels, sizeof(pixels), 0, y); in REG_FIDDLE()
|
H A D | Canvas_SrcRectConstraint.cpp | 13 checkRed.writePixels( in REG_FIDDLE()
|
H A D | Color_Type_Alpha_8.cpp | 18 if (bitmap.writePixels(alphaPixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Color_Type_Gray_8.cpp | 16 if (bitmap.writePixels(grayPixmap, 0, 0)) { in REG_FIDDLE()
|
H A D | Canvas_writePixels_2.cpp | 18 canvas->writePixels(bitmap, x, y); in REG_FIDDLE()
|
H A D | Bitmap_writePixels.cpp | 21 bitmap.writePixels(pixmap, -y * width, -x * height); in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | yuvtorgbsubset.cpp | 80 bitmaps[0].writePixels(innerYPM, 2, 2); in makePixmaps() 81 bitmaps[1].writePixels(innerUPM, 1, 1); in makePixmaps() 82 bitmaps[2].writePixels(innerVPM, 1, 1); in makePixmaps()
|
H A D | copy_to_4444.cpp | 66 if (bitmap.writePixels(redPixmap, 0, 0)) { in DEF_SIMPLE_GM() 70 if (bitmap.writePixels(bluePixmap, 0, 0)) { in DEF_SIMPLE_GM()
|
/third_party/skia/include/core/ |
H A D | SkBitmap.h | 1033 bool writePixels(const SkPixmap& src, int dstX, int dstY); 1055 bool writePixels(const SkPixmap& src) { in writePixels() function in SkBitmap 1056 return this->writePixels(src, 0, 0); in writePixels()
|
/third_party/skia/src/gpu/ |
H A D | SurfaceContext.h | 119 bool writePixels(GrDirectContext* dContext, 130 bool writePixels(GrDirectContext* dContext, 227 * Currently only writePixels and replaceRenderTarget call this directly. All other copies
|
H A D | GrDrawOpAtlas.cpp | 169 void GrDrawOpAtlas::Plot::uploadToTexture(GrDeferredTextureUploadWritePixelsFn& writePixels, in uploadToTexture() argument 186 writePixels(proxy, in uploadToTexture() 275 [plotsp, proxy](GrDeferredTextureUploadWritePixelsFn& writePixels) { in updatePlot() 276 plotsp->uploadToTexture(writePixels, proxy); in updatePlot() 412 [plotsp, proxy](GrDeferredTextureUploadWritePixelsFn& writePixels) { in addToAtlas() 413 plotsp->uploadToTexture(writePixels, proxy); in addToAtlas()
|
/third_party/skia/tests/ |
H A D | WritePixelsTest.cpp | 121 surface->writePixels(bmp, 0, 0); in fill_surface() 312 surface->writePixels({info, &pixel, sizeof(SkPMColor)}, 0, 0); in call_writepixels() 399 surface->writePixels(bmp, rect.fLeft, rect.fTop); in test_write_pixels() 458 // Dawn currently doesn't support writePixels to a texture-as-render-target. in test_write_pixels_non_texture() 500 surf->writePixels(bm, 0, 0); in upload() 505 // This is tests whether the first writePixels is completed before the 506 // second writePixels takes effect (i.e., that writePixels correctly flushes 530 // Seed the resource cached with a scratch texture that will be reused by writePixels in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 591 // SkSurface::writePixels does in DEF_TEST() [all...] |
/third_party/skia/bench/ |
H A D | PremulAndUnpremulAlphaOpsBench.cpp | 34 fBmp1.allocPixels(info); // used in writePixels 51 canvas->writePixels(fBmp1.info(), fBmp1.getPixels(), fBmp1.rowBytes(), 0, 0);
|
/third_party/skia/src/image/ |
H A D | SkSurface.cpp | 295 void SkSurface::writePixels(const SkPixmap& pmap, int x, int y) { in writePixels() function in SkSurface 314 void SkSurface::writePixels(const SkBitmap& src, int x, int y) { in writePixels() function in SkSurface 317 this->writePixels(pm, x, y); in writePixels()
|