summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/types.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-03-04 13:09:51 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-06 16:12:51 +0100
commit2f646af255bf05bd50070deb83bb89e48509afc4 (patch)
tree59c4baf0f1e560845bb49de09a36a67c0fdfc491 /src/mbgl/gl/types.hpp
parentd5816b6db265b36cf1360dc684725b0f7427d959 (diff)
downloadqtlocation-mapboxgl-2f646af255bf05bd50070deb83bb89e48509afc4.tar.gz
[core] make vertex descriptors constexpr
Diffstat (limited to 'src/mbgl/gl/types.hpp')
-rw-r--r--src/mbgl/gl/types.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mbgl/gl/types.hpp b/src/mbgl/gl/types.hpp
index 4c3033454f..22b7098100 100644
--- a/src/mbgl/gl/types.hpp
+++ b/src/mbgl/gl/types.hpp
@@ -32,16 +32,6 @@ enum class ShaderType : uint32_t {
Fragment = 0x8B30
};
-enum class DataType : uint16_t {
- Byte = 0x1400,
- UnsignedByte = 0x1401,
- Short = 0x1402,
- UnsignedShort = 0x1403,
- Integer = 0x1404,
- UnsignedInteger = 0x1405,
- Float = 0x1406
-};
-
enum class RenderbufferType : uint32_t {
RGBA = 0x8058,
DepthStencil = 0x88F0,