Home
last modified time | relevance | path

Searched refs:dst32Storage (Results 1 – 3 of 3) sorted by relevance

/external/skqp/gm/
Dcomposeshader.cpp232 SkTDArray<uint32_t> dst32Storage; variable
233 dst32Storage.setCount(width * height * sizeof(int32_t));
237 dst32Storage[y * width + x] = SkPackARGB32(0xFF, x, y, 0);
248 skBitmap.installPixels(imageInfo, dst32Storage.begin(), width * sizeof(int32_t),
/external/skia/gm/
Dcomposeshader.cpp232 SkTDArray<uint32_t> dst32Storage; variable
233 dst32Storage.setCount(width * height * sizeof(int32_t));
237 dst32Storage[y * width + x] = SkPackARGB32(0xFF, x, y, 0);
248 skBitmap.installPixels(imageInfo, dst32Storage.begin(), width * sizeof(int32_t),
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp570 std::unique_ptr<uint32_t, FxFreeDeleter>& dst32Storage, in Upsample() argument
604 dst32Storage.reset(FX_Alloc2D(uint32_t, width, height)); in Upsample()
605 SkPMColor* dst32Pixels = dst32Storage.get(); in Upsample()
620 buffer = dst32Storage.get(); in Upsample()
626 dst32Storage.reset(FX_Alloc2D(uint32_t, width, height)); in Upsample()
627 uint32_t* dst32Pixels = dst32Storage.get(); in Upsample()
637 buffer = dst32Storage.get(); in Upsample()
2350 std::unique_ptr<uint32_t, FxFreeDeleter> dst32Storage; in StartDIBits() local
2353 if (!Upsample(pSource, dst8Storage, dst32Storage, &skBitmap, &width, &height, in StartDIBits()