summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libEGL/AttributeMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/libEGL/AttributeMap.h')
-rw-r--r--src/3rdparty/angle/src/libEGL/AttributeMap.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/3rdparty/angle/src/libEGL/AttributeMap.h b/src/3rdparty/angle/src/libEGL/AttributeMap.h
deleted file mode 100644
index f2f082fe21..0000000000
--- a/src/3rdparty/angle/src/libEGL/AttributeMap.h
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright (c) 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.
-//
-
-#ifndef LIBEGL_ATTRIBUTEMAP_H_
-#define LIBEGL_ATTRIBUTEMAP_H_
-
-#include <EGL/egl.h>
-
-#include <map>
-
-namespace egl
-{
-
-class AttributeMap
-{
- public:
- AttributeMap();
- explicit AttributeMap(const EGLint *attributes);
-
- virtual void insert(EGLint key, EGLint value);
- virtual bool contains(EGLint key) const;
- virtual EGLint get(EGLint key, EGLint defaultValue) const;
-
- private:
- std::map<EGLint, EGLint> mAttributes;
-};
-
-}
-
-#endif // LIBEGL_ATTRIBUTEMAP_H_