| 26 | class OpsRenderTask : public RenderTask { |
| 27 | public: |
| 28 | OpsRenderTask(std::shared_ptr<RenderTargetProxy> renderTargetProxy, |
| 29 | PlacementArray<DrawOp>&& drawOps, std::optional<Color> clearColor) |
| 30 | : renderTargetProxy(std::move(renderTargetProxy)), drawOps(std::move(drawOps)), |
| 31 | clearColor(clearColor) { |
| 32 | } |
| 33 | |
| 34 | void execute(CommandEncoder* encoder) override; |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected