blob: 370e0c284d5b0d18fac23eb7fe14608f5f099f51 [file] [log] [blame]
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// CLSamplerVk.h: Defines the class interface for CLSamplerVk, implementing CLSamplerImpl.
#ifndef LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_
#define LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_
#include "libANGLE/renderer/vulkan/cl_types.h"
#include "libANGLE/renderer/CLSamplerImpl.h"
namespace rx
{
class CLSamplerVk : public CLSamplerImpl
{
public:
CLSamplerVk(const cl::Sampler &sampler);
~CLSamplerVk() override;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_