blob: 7820d595473ce39921aab1bc1ba31026ef3ffccc [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <Metal/Metal.h>
#include "flutter/fml/macros.h"
#include "impeller/base/backend_cast.h"
#include "impeller/renderer/pipeline.h"
namespace impeller {
class PipelineMTL final
: public Pipeline<PipelineDescriptor>,
public BackendCast<PipelineMTL, Pipeline<PipelineDescriptor>> {
public:
// |Pipeline|
~PipelineMTL() override;
id<MTLRenderPipelineState> GetMTLRenderPipelineState() const;
id<MTLDepthStencilState> GetMTLDepthStencilState() const;
private:
friend class PipelineLibraryMTL;
id<MTLRenderPipelineState> pipeline_state_;
id<MTLDepthStencilState> depth_stencil_state_;
bool is_valid_ = false;
PipelineMTL(std::weak_ptr<PipelineLibrary> library,
const PipelineDescriptor& desc,
id<MTLRenderPipelineState> state,
id<MTLDepthStencilState> depth_stencil_state);
// |Pipeline|
bool IsValid() const override;
FML_DISALLOW_COPY_AND_ASSIGN(PipelineMTL);
};
} // namespace impeller