Home
last modified time | relevance | path

Searched refs:SkThreadedBMPDevice (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/core/
DSkThreadedBMPDevice.cpp178 void SkThreadedBMPDevice::startThreads() { in startThreads()
201 void SkThreadedBMPDevice::finishThreads() { in finishThreads()
211 SkThreadedBMPDevice::SkThreadedBMPDevice(const SkBitmap& bitmap, int tiles, int threads) in SkThreadedBMPDevice() function in SkThreadedBMPDevice
227 void SkThreadedBMPDevice::flush() { in flush()
233 struct SkThreadedBMPDevice::DrawState {
238 explicit DrawState(SkThreadedBMPDevice* dev) { in DrawState()
259 SkIRect SkThreadedBMPDevice::transformDrawBounds(const SkRect& drawBounds) const { in transformDrawBounds()
294 void SkThreadedBMPDevice::drawPaint(const SkPaint& paint) { in drawPaint()
298 void SkThreadedBMPDevice::drawPoints(SkCanvas::PointMode mode, size_t count, in drawPoints()
305 void SkThreadedBMPDevice::drawRect(const SkRect& r, const SkPaint& paint) { in drawRect()
[all …]
DSkThreadedBMPDevice.h40 class SkThreadedBMPDevice : public SkBitmapDevice {
43 SkThreadedBMPDevice(const SkBitmap& bitmap, int tiles, int threads = 0);
44 ~SkThreadedBMPDevice() override { finishThreads(); } in ~SkThreadedBMPDevice()
DSkBitmapDevice.h147 friend class SkThreadedBMPDevice; // to copy fRCStack variable
/external/skia/
DBUILD.gn1249 "src/core/SkThreadedBMPDevice.cpp",
1250 "src/core/SkThreadedBMPDevice.h",
/external/skia/samplecode/
DSampleApp.cpp1095 std::unique_ptr<SkThreadedBMPDevice> tDev; in draw()
1098 tDev.reset(new SkThreadedBMPDevice(this->getBitmap(), fTiles, fThreads)); in draw()