blob: 6c5c239f222c1669f55befc4dd069b9e2ec7831e [file] [log] [blame] [edit]
// 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.
#include "impeller/renderer/backend/vulkan/sampler_library_vk.h"
namespace impeller {
SamplerLibraryVK::SamplerLibraryVK(vk::Device device) : device_(device) {}
SamplerLibraryVK::~SamplerLibraryVK() = default;
std::shared_ptr<const Sampler> SamplerLibraryVK::GetSampler(
SamplerDescriptor descriptor) {
FML_UNREACHABLE();
}
} // namespace impeller