summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/command_encoder.hpp
blob: 0cfe80f433e2c2bef32ae74413bf699bd805485c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <mbgl/gfx/command_encoder.hpp>

namespace mbgl {
namespace gl {

class Context;

class CommandEncoder : public gfx::CommandEncoder {
public:
    explicit CommandEncoder(gl::Context& context_) : context(context_) {
    }

    ~CommandEncoder() override;

private:
    gl::Context& context;
};

} // namespace gl
} // namespace mbgl