Home
last modified time | relevance | path

Searched refs:DrawCommand (Results 1 – 25 of 56) sorted by relevance

123

/third_party/flutter/skia/tools/debugger/
DDrawCommand.h26 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 …]
DJsonWriteBuffer.cpp97 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 …]
DDrawCommand.cpp206 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 …]
DDebugCanvas.h83 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/
DDrawCommand.h28 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 …]
DJsonWriteBuffer.cpp97 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 …]
DDrawCommand.cpp206 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 …]
DDebugCanvas.h109 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);
DDebugCanvas.cpp120 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/
DModel.cpp65 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()
DModel.h11 class DrawCommand; variable
54 SkTDArray<DrawCommand*> fOps;
/third_party/skia/tools/mdbviz/
DModel.cpp65 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()
DModel.h11 class DrawCommand; variable
54 SkTDArray<DrawCommand*> fOps;
/third_party/vk-gl-cts/framework/referencerenderer/
DrrRenderer.hpp109 class DrawCommand class
112DrawCommand (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/
DBreakHandler.cpp56 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/
DBreakHandler.cpp56 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/
DRequest.cpp50 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/
DRequest.cpp47 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/
DteglBufferAgeTests.cpp143 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()
DteglSwapBuffersWithDamageTests.cpp99 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()
DteglPartialUpdateTests.cpp131 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/
DLineLoopTest.cpp493 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/
DvktPipelineReferenceRenderer.cpp290 …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/
DvktPipelineReferenceRenderer.cpp290 …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/
Ddebugger_bindings.cpp147 DrawCommand::MakeJsonMatrix(writer, vm); in lastCommandInfo()
149 DrawCommand::MakeJsonIRect(writer, clip); in lastCommandInfo()

123