summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/line_program.cpp
diff options
context:
space:
mode:
authorVladimir Agafonkin <agafonkin@gmail.com>2019-06-10 22:26:16 +0300
committerGitHub <noreply@github.com>2019-06-10 22:26:16 +0300
commit6262b83cc683db83aef4b3d74b29a04be53fdc3a (patch)
tree08ebea9d6d21ffb094e9582ef5782861aeb74c0b /src/mbgl/programs/line_program.cpp
parent6583204e69938372fe13f99b2028f9a46dde818d (diff)
downloadqtlocation-mapboxgl-6262b83cc683db83aef4b3d74b29a04be53fdc3a.tar.gz
[core] Switch back to a more compact line attributes layout (#14851)
* [core] switch back to a more compact line attributes layout * update mapbox-gl-js to point to master
Diffstat (limited to 'src/mbgl/programs/line_program.cpp')
-rw-r--r--src/mbgl/programs/line_program.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/programs/line_program.cpp b/src/mbgl/programs/line_program.cpp
index 40b4617c77..c808a95c0d 100644
--- a/src/mbgl/programs/line_program.cpp
+++ b/src/mbgl/programs/line_program.cpp
@@ -10,7 +10,7 @@ namespace mbgl {
using namespace style;
-static_assert(sizeof(LineLayoutVertex) == 12, "expected LineLayoutVertex size");
+static_assert(sizeof(LineLayoutVertex) == 8, "expected LineLayoutVertex size");
template <class Values, class...Args>
Values makeValues(const style::LinePaintProperties::PossiblyEvaluated& properties,