blob: 48efccbb40e56d99e9e32ce94ab990af5ef30507 [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_MtlResourceProvider_DEFINED
#define skgpu_graphite_MtlResourceProvider_DEFINED
#include "include/private/SkTHash.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/mtl/MtlGraphicsPipeline.h"
#import <Metal/Metal.h>
namespace skgpu::graphite {
class CommandBuffer;
class MtlSharedContext;
class MtlResourceProvider final : public ResourceProvider {
public:
MtlResourceProvider(SharedContext* sharedContext, SingleOwner*);
~MtlResourceProvider() override {}
sk_sp<Texture> createWrappedTexture(const BackendTexture&) override;
sk_sp<MtlGraphicsPipeline> findOrCreateLoadMSAAPipeline(const RenderPassDesc&);
private:
const MtlSharedContext* mtlSharedContext();
sk_sp<GraphicsPipeline> createGraphicsPipeline(const SkRuntimeEffectDictionary*,
const GraphicsPipelineDesc&,
const RenderPassDesc&) override;
sk_sp<ComputePipeline> createComputePipeline(const ComputePipelineDesc&) override;
sk_sp<Texture> createTexture(SkISize, const TextureInfo&, SkBudgeted) override;
sk_sp<Buffer> createBuffer(size_t size, BufferType type, PrioritizeGpuReads) override;
sk_sp<Sampler> createSampler(const SkSamplingOptions&,
SkTileMode xTileMode,
SkTileMode yTileMode) override;
BackendTexture onCreateBackendTexture(SkISize dimensions, const TextureInfo&) override;
void onDeleteBackendTexture(BackendTexture&) override;
sk_cfp<id<MTLDepthStencilState>> findOrCreateCompatibleDepthStencilState(
const DepthStencilSettings&);
SkTHashMap<DepthStencilSettings, sk_cfp<id<MTLDepthStencilState>>> fDepthStencilStates;
SkTHashMap<uint64_t, sk_sp<MtlGraphicsPipeline>> fLoadMSAAPipelines;
};
} // namespace skgpu::graphite
#endif // skgpu_graphite_MtlResourceProvider_DEFINED