Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h551 class SkDrawTextCommand : public SkDrawCommand {
553 SkDrawTextCommand(const void* text, size_t byteLength, SkScalar x, SkScalar y,
555 ~SkDrawTextCommand() override { delete [] fText; } in ~SkDrawTextCommand()
558 static SkDrawTextCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp3238 SkDrawTextCommand::SkDrawTextCommand(const void* text, size_t byteLength, SkScalar x, SkScalar y, function in SkDrawTextCommand
3254 void SkDrawTextCommand::execute(SkCanvas* canvas) const {
3258 Json::Value SkDrawTextCommand::toJSON(UrlDataManager& urlDataManager) const {
3268 SkDrawTextCommand* SkDrawTextCommand::fromJSON(Json::Value& command,
3274 return new SkDrawTextCommand(text, strlen(text), coords[0].asFloat(), coords[1].asFloat(),
DSkDebugCanvas.cpp640 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint)); in onDrawText()