Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h573 class SkDrawTextRSXformCommand : public SkDrawCommand {
575 SkDrawTextRSXformCommand(const void* text, size_t byteLength, const SkRSXform[],
577 ~SkDrawTextRSXformCommand() override { delete[] fText; delete[] fXform; } in ~SkDrawTextRSXformCommand()
580 static SkDrawTextRSXformCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp3376 SkDrawTextRSXformCommand::SkDrawTextRSXformCommand(const void* text, size_t byteLength, in SkDrawTextRSXformCommand() function in SkDrawTextRSXformCommand
3399 void SkDrawTextRSXformCommand::execute(SkCanvas* canvas) const { in execute()
3403 Json::Value SkDrawTextRSXformCommand::toJSON(UrlDataManager& urlDataManager) const { in toJSON()
3411 SkDrawTextRSXformCommand* SkDrawTextRSXformCommand::fromJSON(Json::Value& command, in fromJSON()
3425 return new SkDrawTextRSXformCommand(text, byteLength, &xform[0], nullptr, paint); in fromJSON()
DSkDebugCanvas.cpp580 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint)); in onDrawTextRSXform()