Home
last modified time | relevance | path

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

/external/skia/tools/debugger/
DSkDrawCommand.h436 class SkDrawTextCommand : public SkDrawCommand {
438 SkDrawTextCommand(const void* text, size_t byteLength, SkScalar x, SkScalar y,
440 virtual ~SkDrawTextCommand() { delete [] fText; } in ~SkDrawTextCommand()
443 static SkDrawTextCommand* fromJSON(Json::Value& command, UrlDataManager& urlDataManager);
DSkDrawCommand.cpp2810 SkDrawTextCommand::SkDrawTextCommand(const void* text, size_t byteLength, SkScalar x, SkScalar y, in SkDrawTextCommand() function in SkDrawTextCommand
2826 void SkDrawTextCommand::execute(SkCanvas* canvas) const { in execute()
2830 Json::Value SkDrawTextCommand::toJSON(UrlDataManager& urlDataManager) const { in toJSON()
2840 SkDrawTextCommand* SkDrawTextCommand::fromJSON(Json::Value& command, in fromJSON()
2846 return new SkDrawTextCommand(text, strlen(text), coords[0].asFloat(), coords[1].asFloat(), in fromJSON()
DSkDebugCanvas.cpp475 this->addDrawCommand(new SkDrawTextCommand(text, byteLength, x, y, paint)); in onDrawText()