blob: cba1684715d2a8bfb8951dc9f56892aaa6aa7a41 [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 Gpu;
class GpuWorkSubmission {
public:
virtual ~GpuWorkSubmission();
virtual bool isFinished() = 0;
virtual void waitUntilFinished(const Gpu*) = 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