blob: f54e76c77d3cf7395a5783b81e5e4b84ff75edfa [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_GpuWorkSubmission_DEFINED
#define skgpu_graphite_GpuWorkSubmission_DEFINED
#include "include/core/SkRefCnt.h"
namespace skgpu::graphite {
class CommandBuffer;
class SharedContext;
class GpuWorkSubmission {
public:
virtual ~GpuWorkSubmission();
virtual bool isFinished() = 0;
virtual void waitUntilFinished(const SharedContext*) = 0;
protected:
CommandBuffer* commandBuffer() { return fCommandBuffer.get(); }
GpuWorkSubmission(sk_sp<CommandBuffer> cmdBuffer);
private:
sk_sp<CommandBuffer> fCommandBuffer;
};
} // namespace skgpu::graphite
#endif // skgpu_graphite_GpuWorkSubmission_DEFINED