blob: 8cdc17d463f49af44668b0396740c867db365f4b [file] [log] [blame]
/*
* Copyright 2022 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_ClearBuffersTask_DEFINED
#define skgpu_graphite_ClearBuffersTask_DEFINED
#include "include/private/base/SkTArray.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include "src/gpu/graphite/Task.h"
namespace skgpu::graphite {
/**
* Task that clears a region of a list of buffers to 0.
*/
class ClearBuffersTask final : public Task {
public:
static sk_sp<ClearBuffersTask> Make(skia_private::TArray<ClearBufferInfo>);
~ClearBuffersTask() override;
bool prepareResources(ResourceProvider*, const RuntimeEffectDictionary*) override {
return true;
}
bool addCommands(Context*, CommandBuffer*, ReplayTargetData) override;
private:
explicit ClearBuffersTask(skia_private::TArray<ClearBufferInfo> clearList)
: fClearList(std::move(clearList)) {}
skia_private::TArray<ClearBufferInfo> fClearList;
};
} // namespace skgpu::graphite
#endif // skgpu_graphite_ClearBuffersTask_DEFINED