summaryrefslogtreecommitdiff
path: root/include/mbgl/gl/renderable_resource.hpp
blob: 0be0ae9c676dba44f61144537d45a36960fe3c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <mbgl/gfx/renderable.hpp>

namespace mbgl {
namespace gl {

class RenderableResource : public gfx::RenderableResource {
protected:
    explicit RenderableResource() = default;

public:
    virtual void bind() = 0;
};

} // namespace gl
} // namespace mbgl