blob: ecb9c80e01e9c01b53c7091fe83dcfebc1972d8e [file] [log] [blame]
/*
* Copyright 2021 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef skgpu_graphite_MtlBuffer_DEFINED
#define skgpu_graphite_MtlBuffer_DEFINED
#include "include/core/SkRefCnt.h"
#include "include/gpu/graphite/mtl/MtlTypes.h"
#include "src/gpu/graphite/Buffer.h"
#import <Metal/Metal.h>
namespace skgpu::graphite {
class MtlSharedContext;
class MtlBuffer : public Buffer {
public:
static sk_sp<Buffer> Make(const MtlSharedContext*,
size_t size,
BufferType type,
PrioritizeGpuReads);
id<MTLBuffer> mtlBuffer() const { return fBuffer.get(); }
private:
MtlBuffer(const MtlSharedContext*,
size_t size,
BufferType type,
PrioritizeGpuReads,
sk_cfp<id<MTLBuffer>>);
void onMap() override;
void onUnmap() override;
void freeGpuData() override;
sk_cfp<id<MTLBuffer>> fBuffer;
};
} // namespace skgpu::graphite
#endif // skgpu_graphite_MtlBuffer_DEFINED