xref: /aosp_15_r20/external/angle/src/libANGLE/renderer/wgpu/SamplerWgpu.h (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1 //
2 // Copyright 2024 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 // SamplerWgpu.h:
7 //    Defines the class interface for SamplerWgpu, implementing SamplerImpl.
8 //
9 
10 #ifndef LIBANGLE_RENDERER_WGPU_SAMPLERWGPU_H_
11 #define LIBANGLE_RENDERER_WGPU_SAMPLERWGPU_H_
12 
13 #include "libANGLE/renderer/SamplerImpl.h"
14 
15 namespace rx
16 {
17 
18 class SamplerWgpu : public SamplerImpl
19 {
20   public:
21     SamplerWgpu(const gl::SamplerState &state);
22     ~SamplerWgpu() override;
23 
24     angle::Result syncState(const gl::Context *context, const bool dirty) override;
25 };
26 
27 }  // namespace rx
28 
29 #endif  // LIBANGLE_RENDERER_WGPU_SAMPLERWGPU_H_
30