xref: /aosp_15_r20/external/angle/src/libANGLE/renderer/wgpu/SamplerWgpu.cpp (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.cpp:
7 //    Implements the class methods for SamplerWgpu.
8 //
9 
10 #include "libANGLE/renderer/wgpu/SamplerWgpu.h"
11 
12 #include "common/debug.h"
13 
14 namespace rx
15 {
16 
SamplerWgpu(const gl::SamplerState & state)17 SamplerWgpu::SamplerWgpu(const gl::SamplerState &state) : SamplerImpl(state) {}
18 
~SamplerWgpu()19 SamplerWgpu::~SamplerWgpu() {}
20 
syncState(const gl::Context * context,const bool dirty)21 angle::Result SamplerWgpu::syncState(const gl::Context *context, const bool dirty)
22 {
23     return angle::Result::Continue;
24 }
25 
26 }  // namespace rx
27