summaryrefslogtreecommitdiff
path: root/include/mbgl/gl/gl_helper.hpp
blob: 893c73e0c3f9b6e80b2a865ed0173536c6518928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

namespace mbgl {
namespace gl {

template <typename T>
class Preserve {
public:
    inline Preserve() : data(T::Get()) {
    }
    inline ~Preserve() {
        T::Set(data);
    }

private:
    const typename T::Type data;
};

} // namespace gl
} // namespace mbgl