blob: c6ddf781f5fe3091f7c12b8e2a8b79618462f8a3 [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "experimental/graphite/src/TaskGraph.h"
namespace skgpu {
TaskGraph::TaskGraph() {}
TaskGraph::~TaskGraph() {}
void TaskGraph::add(sk_sp<Task> task) {
fTasks.emplace_back(std::move(task));
}
void TaskGraph::reset() {
fTasks.clear();
}
} // namespace skgpu