diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-10-30 16:00:14 +0200 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-11-01 17:45:37 +0200 |
commit | 1262659b8da2a52ce1697372b97b086a61810651 (patch) | |
tree | 6bfa4a10ea9103b470f79f0adc87ca22bdc05182 /include/mbgl/map | |
parent | 53e61fa71b3c2479ae16a0daa04a6e0abd9f9922 (diff) | |
download | qtlocation-mapboxgl-1262659b8da2a52ce1697372b97b086a61810651.tar.gz |
[core] Move GLContextMode to its own Renderer header
Diffstat (limited to 'include/mbgl/map')
-rw-r--r-- | include/mbgl/map/mode.hpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/mbgl/map/mode.hpp b/include/mbgl/map/mode.hpp index 05de2df22c..256d152e43 100644 --- a/include/mbgl/map/mode.hpp +++ b/include/mbgl/map/mode.hpp @@ -14,15 +14,6 @@ enum class MapMode : EnumType { Still, // a once-off still image }; -// We can avoid redundant GL calls when it is known that the GL context is not -// being shared. In a shared GL context case, we need to make sure that the -// correct GL configurations are in use - they might have changed between render -// calls. -enum class GLContextMode : EnumType { - Unique, - Shared, -}; - // We can choose to constrain the map both horizontally or vertically, or only // vertically e.g. while panning. enum class ConstrainMode : EnumType { |