/third_party/flutter/skia/tools/debugger/ |
D | DrawCommand.h | 26 class DrawCommand { 75 DrawCommand(OpType opType); 77 virtual ~DrawCommand() {} in ~DrawCommand() 118 class RestoreCommand : public DrawCommand { 124 typedef DrawCommand INHERITED; 127 class ClearCommand : public DrawCommand { 136 typedef DrawCommand INHERITED; 139 class ClipPathCommand : public DrawCommand { 151 typedef DrawCommand INHERITED; 154 class ClipRegionCommand : public DrawCommand { [all …]
|
D | JsonWriteBuffer.cpp | 97 DrawCommand::MakeJsonColor(*fWriter, color); in writeColor() 104 DrawCommand::MakeJsonColor(*fWriter, color[i]); in writeColorArray() 111 DrawCommand::MakeJsonColor4f(*fWriter, color); in writeColor4f() 118 DrawCommand::MakeJsonColor4f(*fWriter, color[i]); in writeColor4fArray() 125 DrawCommand::MakeJsonPoint(*fWriter, point); in writePoint() 130 DrawCommand::MakeJsonPoint3(*fWriter, point); in writePoint3() 137 DrawCommand::MakeJsonPoint(*fWriter, point[i]); in writePointArray() 144 DrawCommand::MakeJsonMatrix(*fWriter, matrix); in writeMatrix() 149 DrawCommand::MakeJsonIRect(*fWriter, rect); in writeIRect() 154 DrawCommand::MakeJsonRect(*fWriter, rect); in writeRect() [all …]
|
D | DrawCommand.cpp | 206 DrawCommand::DrawCommand(OpType type) : fOpType(type), fVisible(true) {} in DrawCommand() function in DrawCommand 208 const char* DrawCommand::GetCommandString(OpType type) { in GetCommandString() 257 void DrawCommand::toJSON(SkJSONWriter& writer, UrlDataManager& urlDataManager) const { in toJSON() 439 void DrawCommand::MakeJsonColor(SkJSONWriter& writer, const SkColor color) { in MakeJsonColor() 448 void DrawCommand::MakeJsonColor4f(SkJSONWriter& writer, const SkColor4f& color) { in MakeJsonColor4f() 457 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, const SkPoint& point) { in MakeJsonPoint() 464 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, SkScalar x, SkScalar y) { in MakeJsonPoint() 471 void DrawCommand::MakeJsonPoint3(SkJSONWriter& writer, const SkPoint3& point) { in MakeJsonPoint3() 479 void DrawCommand::MakeJsonRect(SkJSONWriter& writer, const SkRect& rect) { in MakeJsonRect() 488 void DrawCommand::MakeJsonIRect(SkJSONWriter& writer, const SkIRect& rect) { in MakeJsonIRect() [all …]
|
D | DebugCanvas.h | 83 DrawCommand* getDrawCommandAt(int index); 105 void detachCommands(SkTDArray<DrawCommand*>* dst) { fCommandVector.swap(*dst); } in detachCommands() 202 SkTDArray<DrawCommand*> fCommandVector; 214 void addDrawCommand(DrawCommand* command);
|
/third_party/skia/tools/debugger/ |
D | DrawCommand.h | 28 class DrawCommand { 79 DrawCommand(OpType opType); 81 virtual ~DrawCommand() {} in ~DrawCommand() 124 class RestoreCommand : public DrawCommand { 130 using INHERITED = DrawCommand; 133 class ClearCommand : public DrawCommand { 142 using INHERITED = DrawCommand; 145 class ClipPathCommand : public DrawCommand { 157 using INHERITED = DrawCommand; 160 class ClipRegionCommand : public DrawCommand { [all …]
|
D | JsonWriteBuffer.cpp | 97 DrawCommand::MakeJsonColor(*fWriter, color); in writeColor() 104 DrawCommand::MakeJsonColor(*fWriter, color[i]); in writeColorArray() 111 DrawCommand::MakeJsonColor4f(*fWriter, color); in writeColor4f() 118 DrawCommand::MakeJsonColor4f(*fWriter, color[i]); in writeColor4fArray() 125 DrawCommand::MakeJsonPoint(*fWriter, point); in writePoint() 130 DrawCommand::MakeJsonPoint3(*fWriter, point); in writePoint3() 137 DrawCommand::MakeJsonPoint(*fWriter, point[i]); in writePointArray() 158 DrawCommand::MakeJsonMatrix(*fWriter, matrix); in writeMatrix() 163 DrawCommand::MakeJsonIRect(*fWriter, rect); in writeIRect() 168 DrawCommand::MakeJsonRect(*fWriter, rect); in writeRect() [all …]
|
D | DrawCommand.cpp | 206 DrawCommand::DrawCommand(OpType type) : fOpType(type), fVisible(true) {} in DrawCommand() function in DrawCommand 208 const char* DrawCommand::GetCommandString(OpType type) { in GetCommandString() 258 void DrawCommand::toJSON(SkJSONWriter& writer, UrlDataManager& urlDataManager) const { in toJSON() 393 void DrawCommand::MakeJsonColor(SkJSONWriter& writer, const SkColor color) { in MakeJsonColor() 402 void DrawCommand::MakeJsonColor4f(SkJSONWriter& writer, const SkColor4f& color) { in MakeJsonColor4f() 411 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, const SkPoint& point) { in MakeJsonPoint() 418 void DrawCommand::MakeJsonPoint(SkJSONWriter& writer, SkScalar x, SkScalar y) { in MakeJsonPoint() 425 void DrawCommand::MakeJsonPoint3(SkJSONWriter& writer, const SkPoint3& point) { in MakeJsonPoint3() 433 void DrawCommand::MakeJsonRect(SkJSONWriter& writer, const SkRect& rect) { in MakeJsonRect() 442 void DrawCommand::MakeJsonIRect(SkJSONWriter& writer, const SkIRect& rect) { in MakeJsonIRect() [all …]
|
D | DebugCanvas.h | 109 DrawCommand* getDrawCommandAt(int index) const; 131 void detachCommands(SkTDArray<DrawCommand*>* dst) { fCommandVector.swap(*dst); } in detachCommands() 207 SkTDArray<DrawCommand*> fCommandVector; 233 void addDrawCommand(DrawCommand* command);
|
D | DebugCanvas.cpp | 120 void DebugCanvas::addDrawCommand(DrawCommand* command) { fCommandVector.push_back(command); } in addDrawCommand() 264 DrawCommand* DebugCanvas::getDrawCommandAt(int index) const { in getDrawCommandAt() 627 const DrawCommand* command = this->getDrawCommandAt(i); in getImageIdToCommandMap() 631 case DrawCommand::OpType::kDrawImage_OpType: { in getImageIdToCommandMap() 635 case DrawCommand::OpType::kDrawImageRect_OpType: { in getImageIdToCommandMap() 639 case DrawCommand::OpType::kDrawImageLattice_OpType: { in getImageIdToCommandMap()
|
/third_party/flutter/skia/tools/mdbviz/ |
D | Model.cpp | 65 return DrawCommand::GetCommandString(fOps[index]->getType()); in getOpName() 69 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPush() 71 return DrawCommand::kSave_OpType == type || DrawCommand::kSaveLayer_OpType == type || in isHierarchyPush() 72 DrawCommand::kBeginDrawPicture_OpType == type; in isHierarchyPush() 76 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPop() 78 return DrawCommand::kRestore_OpType == type || DrawCommand::kEndDrawPicture_OpType == type; in isHierarchyPop()
|
D | Model.h | 11 class DrawCommand; variable 54 SkTDArray<DrawCommand*> fOps;
|
/third_party/skia/tools/mdbviz/ |
D | Model.cpp | 65 return DrawCommand::GetCommandString(fOps[index]->getType()); in getOpName() 69 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPush() 71 return DrawCommand::kSave_OpType == type || DrawCommand::kSaveLayer_OpType == type || in isHierarchyPush() 72 DrawCommand::kBeginDrawPicture_OpType == type; in isHierarchyPush() 76 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPop() 78 return DrawCommand::kRestore_OpType == type || DrawCommand::kEndDrawPicture_OpType == type; in isHierarchyPop()
|
D | Model.h | 11 class DrawCommand; variable 54 SkTDArray<DrawCommand*> fOps;
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrRenderer.hpp | 109 class DrawCommand class 112 …DrawCommand (const RenderState& state_, const RenderTarget& renderTarget_, const Program& program_… in DrawCommand() function in rr::DrawCommand 138 void draw (const DrawCommand& command) const; 139 void drawInstanced (const DrawCommand& command, int numInstances) const;
|
/third_party/skia/tools/skiaserve/urlhandlers/ |
D | BreakHandler.cpp | 56 DrawCommand::MakeJsonColor(writer, target); in handle() 71 DrawCommand::MakeJsonColor(writer, current); in handle() 79 DrawCommand::MakeJsonColor(writer, target); in handle()
|
/third_party/flutter/skia/tools/skiaserve/urlhandlers/ |
D | BreakHandler.cpp | 56 DrawCommand::MakeJsonColor(writer, target); in handle() 71 DrawCommand::MakeJsonColor(writer, current); in handle() 79 DrawCommand::MakeJsonColor(writer, target); in handle()
|
/third_party/skia/tools/skiaserve/ |
D | Request.cpp | 50 DrawCommand::WritePNG(bmp, buffer); in writeCanvasToPng() 268 DrawCommand::MakeJsonMatrix44(writer, vm); in getJsonInfo() 270 DrawCommand::MakeJsonIRect(writer, clip); in getJsonInfo()
|
/third_party/flutter/skia/tools/skiaserve/ |
D | Request.cpp | 47 DrawCommand::WritePNG(bmp, buffer); in writeCanvasToPng() 261 DrawCommand::MakeJsonMatrix(writer, vm); in getJsonInfo() 263 DrawCommand::MakeJsonIRect(writer, clip); in getJsonInfo()
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglBufferAgeTests.cpp | 143 struct DrawCommand struct 145 DrawCommand (const BufferAgeTest::DrawType drawType_, const ColoredRect& rect_); 150 DrawCommand::DrawCommand (const BufferAgeTest::DrawType drawType_, const ColoredRect& rect_) in DrawCommand() function in deqp::egl::__anon9428ee2e0111::DrawCommand 161 vector<DrawCommand> draws; 187 const DrawCommand drawCommand (drawTypes[ndx], coloredRect); in generateRandomFrame()
|
D | teglSwapBuffersWithDamageTests.cpp | 99 struct DrawCommand struct 101 DrawCommand (DrawType drawType_, const ColoredRect& rect_); 106 DrawCommand::DrawCommand (DrawType drawType_, const ColoredRect& rect_) in DrawCommand() function in deqp::egl::__anon9d23b96a0111::DrawCommand 117 vector<DrawCommand> draws; 659 const DrawCommand drawCommand (frameDrawType[rectNdx], rect); in generateFrameSequence()
|
D | teglPartialUpdateTests.cpp | 131 struct DrawCommand struct 133 DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_); 138 DrawCommand::DrawCommand (const PartialUpdateTest::DrawType drawType_, const ColoredRect& rect_) in DrawCommand() function in deqp::egl::__anon7d294b370111::DrawCommand 149 vector<DrawCommand> draws; 174 const DrawCommand drawCommand (drawTypes[ndx], coloredRect); in generateRandomFrame()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | LineLoopTest.cpp | 493 struct DrawCommand in runTest() struct 550 DrawCommand cmdBuffer = {}; in runTest() 556 glBufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(DrawCommand), &cmdBuffer, GL_STATIC_DRAW); in runTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
D | vktPipelineReferenceRenderer.cpp | 290 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primit… in draw() 327 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 3, vertexAttribs, primit… in draw() 359 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primit… in draw()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineReferenceRenderer.cpp | 290 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primit… in draw() 327 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 3, vertexAttribs, primit… in draw() 359 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primit… in draw()
|
/third_party/flutter/skia/experimental/wasm-skp-debugger/ |
D | debugger_bindings.cpp | 147 DrawCommand::MakeJsonMatrix(writer, vm); in lastCommandInfo() 149 DrawCommand::MakeJsonIRect(writer, clip); in lastCommandInfo()
|