Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h607 class SkDrawTextRSXformCommand : public SkDrawCommand {
609 SkDrawTextRSXformCommand(const void* text, size_t byteLength, const SkRSXform[],
611 ~SkDrawTextRSXformCommand() override { delete[] fText; delete[] fXform; } in ~SkDrawTextRSXformCommand()
614 static SkDrawTextRSXformCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp3343 SkDrawTextRSXformCommand::SkDrawTextRSXformCommand(const void* text, size_t byteLength, function in SkDrawTextRSXformCommand
3366 void SkDrawTextRSXformCommand::execute(SkCanvas* canvas) const {
3370 Json::Value SkDrawTextRSXformCommand::toJSON(UrlDataManager& urlDataManager) const {
3378 SkDrawTextRSXformCommand* SkDrawTextRSXformCommand::fromJSON(Json::Value& command,
3392 return new SkDrawTextRSXformCommand(text, byteLength, &xform[0], nullptr, paint);
DSkDebugCanvas.cpp651 this->addDrawCommand(new SkDrawTextRSXformCommand(text, byteLength, xform, cull, paint)); in onDrawTextRSXform()