diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2014-08-28 17:13:55 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2014-08-28 17:13:55 -0700 |
commit | bfa0b7f009c2460f81f5e4cbfdf251a2589a618a (patch) | |
tree | dc744b8496364f8d23b57e5fe4341c58048e53eb /include | |
parent | 6855590548b867c4c9d3b7a1579ca74b49ea72b4 (diff) | |
download | qtlocation-mapboxgl-bfa0b7f009c2460f81f5e4cbfdf251a2589a618a.tar.gz |
Remove vtxMatrix state
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/renderer/painter.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mbgl/renderer/painter.hpp b/include/mbgl/renderer/painter.hpp index 957660a525..6801ad1cf7 100644 --- a/include/mbgl/renderer/painter.hpp +++ b/include/mbgl/renderer/painter.hpp @@ -120,7 +120,7 @@ public: bool needsAnimation() const; private: void setupShaders(); - const mat4 &translatedMatrix(const mat4& matrix, const std::array<float, 2> &translation, const Tile::ID &id, TranslateAnchorType anchor = TranslateAnchorType::Map); + mat4 translatedMatrix(const mat4& matrix, const std::array<float, 2> &translation, const Tile::ID &id, TranslateAnchorType anchor = TranslateAnchorType::Map); void prepareTile(const Tile& tile); @@ -131,7 +131,6 @@ public: void depthRange(float near, float far); public: - mat4 vtxMatrix; mat4 projMatrix; mat4 nativeMatrix; mat4 extrudeMatrix; |