summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/command_encoder.cpp
blob: 82046202bc0fc2ead3aef8f1dbbf5542af89eeac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/gl/command_encoder.hpp>
#include <mbgl/gl/context.hpp>

namespace mbgl {
namespace gl {

CommandEncoder::~CommandEncoder() {
    context.performCleanup();
}

} // namespace gl
} // namespace mbgl