diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-10-26 18:06:36 -0700 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2016-11-01 18:41:52 +0100 |
commit | ed155460d3ec3777bfd95ce3d40c809e583b07de (patch) | |
tree | ce362d4154cc300b75d78ff8051ebf782834f044 /src/mbgl/gl/texture.hpp | |
parent | 7b50cac49f353524457e16d3f342299e0886e963 (diff) | |
download | qtlocation-mapboxgl-ed155460d3ec3777bfd95ce3d40c809e583b07de.tar.gz |
[core] convert LineAtlas to use managed texture handling
Diffstat (limited to 'src/mbgl/gl/texture.hpp')
-rw-r--r-- | src/mbgl/gl/texture.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mbgl/gl/texture.hpp b/src/mbgl/gl/texture.hpp index 802dac9eb2..5330689ac2 100644 --- a/src/mbgl/gl/texture.hpp +++ b/src/mbgl/gl/texture.hpp @@ -12,6 +12,8 @@ public: UniqueTexture texture; TextureFilter filter = TextureFilter::Nearest; TextureMipMap mipmap = TextureMipMap::No; + TextureWrap wrapX = TextureWrap::Clamp; + TextureWrap wrapY = TextureWrap::Clamp; }; } // namespace gl |