summaryrefslogtreecommitdiff
path: root/src/mbgl/gfx/command_encoder.hpp
blob: 3f996bb7017a0b4b91a924039a9bf54e1381d586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

namespace mbgl {
namespace gfx {

class CommandEncoder {
protected:
    explicit CommandEncoder() = default;

public:
    virtual ~CommandEncoder() = default;
    CommandEncoder(const CommandEncoder&) = delete;
    CommandEncoder& operator=(const CommandEncoder&) = delete;
};

} // namespace gfx
} // namespace mbgl