blob: ce4ba701973beda5978d2aee47f9adc8fecf8ff8 [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.
*/
#ifndef skgpu_graphite_TaskGraph_DEFINED
#define skgpu_graphite_TaskGraph_DEFINED
#include <vector>
#include "src/gpu/graphite/Task.h"
namespace skgpu::graphite {
class CommandBuffer;
class Context;
class ResourceProvider;
class TaskGraph {
public:
TaskGraph();
~TaskGraph();
void add(sk_sp<Task>);
void prepend(sk_sp<Task>);
// Returns true on success; false on failure
bool prepareResources(ResourceProvider*, const RuntimeEffectDictionary*);
bool addCommands(Context*, CommandBuffer*, Task::ReplayTargetData);
void reset();
#ifdef GRAPHITE_TEST_UTILS
bool hasTasks() const { return !fTasks.empty(); }
#endif
protected:
private:
std::vector<sk_sp<Task>> fTasks;
};
} // namespace skgpu::graphite
#endif // skgpu_graphite_TaskGraph_DEFINED