Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h248 class SkDrawBitmapNineCommand : public SkDrawCommand {
250 SkDrawBitmapNineCommand(const SkBitmap& bitmap, const SkIRect& center,
255 static SkDrawBitmapNineCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp1786 SkDrawBitmapNineCommand::SkDrawBitmapNineCommand(const SkBitmap& bitmap, const SkIRect& center, in SkDrawBitmapNineCommand() function in SkDrawBitmapNineCommand
1807 void SkDrawBitmapNineCommand::execute(SkCanvas* canvas) const { in execute()
1811 bool SkDrawBitmapNineCommand::render(SkCanvas* canvas) const { in render()
1817 Json::Value SkDrawBitmapNineCommand::toJSON(UrlDataManager& urlDataManager) const { in toJSON()
1831 SkDrawBitmapNineCommand* SkDrawBitmapNineCommand::fromJSON(Json::Value& command, in fromJSON()
1850 SkDrawBitmapNineCommand* result = new SkDrawBitmapNineCommand(*bitmap, center, dst, paintPtr); in fromJSON()
DSkDebugCanvas.cpp409 this->addDrawCommand(new SkDrawBitmapNineCommand(bitmap, center, dst, paint)); in onDrawBitmapNine()