1 //
2 // Copyright 2021 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 // CLSamplerVk.h: Defines the class interface for CLSamplerVk, implementing CLSamplerImpl.
7 
8 #ifndef LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_
9 #define LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_
10 
11 #include "libANGLE/renderer/vulkan/cl_types.h"
12 
13 #include "libANGLE/renderer/CLSamplerImpl.h"
14 
15 namespace rx
16 {
17 
18 class CLSamplerVk : public CLSamplerImpl
19 {
20   public:
21     CLSamplerVk(const cl::Sampler &sampler);
22     ~CLSamplerVk() override;
23 };
24 
25 }  // namespace rx
26 
27 #endif  // LIBANGLE_RENDERER_VULKAN_CLSAMPLERVK_H_
28