summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h')
-rw-r--r--src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h b/src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h
deleted file mode 100644
index 66e1079b64..0000000000
--- a/src/3rdparty/angle/src/libANGLE/renderer/SamplerImpl.h
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// Copyright 2014 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.
-//
-
-// SamplerImpl.h: Defines the abstract rx::SamplerImpl class.
-
-#ifndef LIBANGLE_RENDERER_SAMPLERIMPL_H_
-#define LIBANGLE_RENDERER_SAMPLERIMPL_H_
-
-#include "common/angleutils.h"
-
-namespace gl
-{
-class Context;
-struct SamplerState;
-} // namespace gl
-
-namespace rx
-{
-
-class SamplerImpl : angle::NonCopyable
-{
- public:
- SamplerImpl(const gl::SamplerState &state) : mState(state) {}
- virtual ~SamplerImpl() {}
-
- virtual void syncState(const gl::Context *context)
- {
- // Default implementation: no-op.
- }
-
- protected:
- const gl::SamplerState &mState;
-};
-} // namespace rx
-
-#endif // LIBANGLE_RENDERER_SAMPLERIMPL_H_