summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/bucket.hpp
blob: 294e50dd8c8d5b8baf1837c3cf9f77a5a6e33795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once

#include <mbgl/renderer/render_pass.hpp>
#include <mbgl/util/noncopyable.hpp>
#include <mbgl/tile/geometry_tile_data.hpp>

#include <atomic>

namespace mbgl {

class Painter;
class PaintParameters;
class RenderTile;

namespace gl {
class Context;
} // namespace gl

namespace style {
class Layer;
} // namespace style

class Bucket : private util::noncopyable {
public:
    Bucket() = default;
    virtual ~Bucket() = default;

    virtual void addFeature(const GeometryTileFeature&,
                            const GeometryCollection&) {};

    // As long as this bucket has a Prepare render pass, this function is getting called. Typically,
    // this only happens once when the bucket is being rendered for the first time.
    virtual void upload(gl::Context&) = 0;

    // Every time this bucket is getting rendered, this function is called. This happens either
    // once or twice (for Opaque and Transparent render passes).
    virtual void render(Painter&, PaintParameters&, const style::Layer&, const RenderTile&) = 0;

    virtual bool hasData() const = 0;

    bool needsUpload() const {
        return !uploaded;
    }

protected:
    std::atomic<bool> uploaded { false };
};

} // namespace mbgl