summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/line_atlas.hpp
blob: 853305d138290b041c93ff8afc7a0c5487adc385 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#pragma once

#include <mbgl/gfx/texture.hpp>
#include <mbgl/util/image.hpp>
#include <mbgl/util/optional.hpp>
#include <mbgl/util/variant.hpp>

#include <map>
#include <memory>
#include <vector>

namespace mbgl {

namespace gfx {
class UploadPass;
} // namespace gfx

class LinePatternPos {
public:
    float width;
    float height;
    float y;
};

enum class LinePatternCap : bool {
    Square = false,
    Round = true,
};

class DashPatternTexture {
public:
    DashPatternTexture(const std::vector<float>& from, const std::vector<float>& to, LinePatternCap);

    // Uploads the texture to the GPU to be available when we need it. This is a lazy operation;
    // the texture is only bound when the data is uploaded for the first time.
    void upload(gfx::UploadPass&);

    // Binds the atlas texture to the GPU, and uploads data if it is out of date.
    gfx::TextureBinding textureBinding() const;

    // Returns the size of the texture image.
    Size getSize() const;

    const LinePatternPos& getFrom() const { return from; }
    const LinePatternPos& getTo() const { return to; }

private:
    LinePatternPos from, to;
    variant<AlphaImage, gfx::Texture> texture;
};

class LineAtlas {
public:
    LineAtlas();
    ~LineAtlas();

    // Obtains or creates a texture that has both line patterns in it
    DashPatternTexture& getDashPatternTexture(const std::vector<float>& from,
                                              const std::vector<float>& to,
                                              LinePatternCap);

    // Uploads the textures to the GPU to be available when we need it.
    void upload(gfx::UploadPass&);

private:
    std::map<size_t, DashPatternTexture> textures;

    // Stores a list of hashes of texture objcts that need uploading.
    std::vector<size_t> needsUpload;
};

} // namespace mbgl