| /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/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/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/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::__anon8466b9500111::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::__anonb809478c0111::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::__anon9fbbd7590111::DrawCommand 149 vector<DrawCommand> draws; 174 const DrawCommand drawCommand (drawTypes[ndx], coloredRect); in generateRandomFrame()
|
| /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/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/skia/experimental/wasm-skp-debugger/ |
| D | debugger_bindings.cpp | 240 DrawCommand::MakeJsonMatrix44(writer, vm); in lastCommandInfo() 242 DrawCommand::MakeJsonIRect(writer, clip); in lastCommandInfo()
|
| /third_party/skia/tests/ |
| D | MatrixClipCollapseTest.cpp | 646 SkDebugf("%16s, ", DrawCommand::GetCommandString(expected[i])); in print() 652 SkDebugf("%s\n", DrawCommand::GetCommandString(actual[i])); in print()
|
| /third_party/skia/ |
| D | BUILD.gn | 2006 "tools/debugger/DrawCommand.cpp", 2507 "tools/debugger/DrawCommand.cpp", 2508 "tools/debugger/DrawCommand.h", 3041 "tools/debugger/DrawCommand.cpp", 3532 "tools/debugger/DrawCommand.cpp", 3695 "tools/debugger/DrawCommand.cpp", 3742 "tools/debugger/DrawCommand.cpp", 3785 "tools/debugger/DrawCommand.cpp", 3820 "tools/debugger/DrawCommand.cpp", 3846 "tools/debugger/DrawCommand.cpp", [all …]
|
| /third_party/vk-gl-cts/modules/gles3/functional/ |
| D | es3fPolygonOffsetTests.cpp | 444 rr::DrawCommand( in testPolygonOffset() 709 rr::DrawCommand( in testPolygonOffset() 721 rr::DrawCommand( in testPolygonOffset()
|
| /third_party/vk-gl-cts/modules/gles2/functional/ |
| D | es2fPolygonOffsetTests.cpp | 441 rr::DrawCommand( in testPolygonOffset() 707 rr::DrawCommand( in testPolygonOffset() 719 rr::DrawCommand( in testPolygonOffset()
|
| /third_party/vk-gl-cts/modules/glshared/ |
| D | glsDrawTest.cpp | 1894 struct DrawCommand in render() struct 1901 deUint8* buffer = new deUint8[sizeof(DrawCommand) + indirectOffset]; in render() 1904 DrawCommand command; in render() 1927 …m_ctx.bufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(DrawCommand) + indirectOffset, buffer, GL_STATIC_… in render() 1939 struct DrawCommand in render() struct 1947 deUint8* buffer = new deUint8[sizeof(DrawCommand) + indirectOffset]; in render() 1950 DrawCommand command; in render() 1978 …m_ctx.bufferData(GL_DRAW_INDIRECT_BUFFER, sizeof(DrawCommand) + indirectOffset, buffer, GL_STATIC_… in render()
|
| D | glsTextureBufferCase.cpp | 703 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives); in renderReference() 710 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives); in renderReference()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
| D | vktDrawInstancedTests.cpp | 732 …const rr::DrawCommand command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs… in iterate() 741 …const rr::DrawCommand command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs… in iterate()
|
| D | vktDrawAhbTests.cpp | 173 …renderer.draw(rr::DrawCommand(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs… in generateRefImage()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/ |
| D | vktDrawUtil.cpp | 162 renderer.draw(rr::DrawCommand( renderState, in draw()
|