Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h630 class SkDrawPatchCommand : public SkDrawCommand {
632 SkDrawPatchCommand(const SkPoint cubics[12], const SkColor colors[4],
637 static SkDrawPatchCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp3071 SkDrawPatchCommand::SkDrawPatchCommand(const SkPoint cubics[12], const SkColor colors[4], in SkDrawPatchCommand() function in SkDrawPatchCommand
3095 void SkDrawPatchCommand::execute(SkCanvas* canvas) const { in execute()
3099 Json::Value SkDrawPatchCommand::toJSON(UrlDataManager& urlDataManager) const { in toJSON()
3124 SkDrawPatchCommand* SkDrawPatchCommand::fromJSON(Json::Value& command, in fromJSON()
3160 return new SkDrawPatchCommand(cubics, colorsPtr, texCoordsPtr, bmode, paint); in fromJSON()
DSkDebugCanvas.cpp592 this->addDrawCommand(new SkDrawPatchCommand(cubics, colors, texCoords, bmode, paint)); in onDrawPatch()