blob: 4c11bd3660e8c3adc455a1b38fba59e49c37e9c4 [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 "flutter/fml/macros.h"
#include "impeller/base/backend_cast.h"
#include "impeller/renderer/backend/vulkan/vk.h"
#include "impeller/renderer/sampler.h"
#include "vulkan/vulkan_handles.hpp"
namespace impeller {
class SamplerLibraryVK;
class SamplerVK final : public Sampler, public BackendCast<SamplerVK, Sampler> {
public:
SamplerVK(SamplerDescriptor desc, vk::UniqueSampler sampler);
// |Sampler|
~SamplerVK() override;
vk::Sampler GetSamplerVK() const;
private:
friend SamplerLibraryVK;
vk::UniqueSampler sampler_;
bool is_valid_ = false;
// |Sampler|
bool IsValid() const override;
FML_DISALLOW_COPY_AND_ASSIGN(SamplerVK);
};
} // namespace impeller