diff options
Diffstat (limited to 'src/mbgl/gl/attribute.hpp')
-rw-r--r-- | src/mbgl/gl/attribute.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mbgl/gl/attribute.hpp b/src/mbgl/gl/attribute.hpp index 8bc474e967..f270a250bb 100644 --- a/src/mbgl/gl/attribute.hpp +++ b/src/mbgl/gl/attribute.hpp @@ -4,8 +4,6 @@ #include <mbgl/gl/shader.hpp> #include <cstddef> -#include <limits> -#include <vector> namespace mbgl { namespace gl { @@ -27,10 +25,8 @@ public: type(DataTypeOf<T>::value), count(N), offset(O) { - static_assert(std::is_standard_layout<Vertex>::value, "vertex type must use standard layout"); static_assert(O % 4 == 0, "vertex attribute must be optimally aligned"); static_assert(1 <= N && N <= 4, "count must be 1, 2, 3, or 4"); - static_assert(sizeof(Vertex) <= std::numeric_limits<int32_t>::max(), "vertex type is too big"); } AttributeLocation location; |