summaryrefslogtreecommitdiff
path: root/src/mbgl/util/raster.hpp
blob: 0a275a197cf1cfc93925e3865cc4172269719545 (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
#ifndef MBGL_UTIL_RASTER
#define MBGL_UTIL_RASTER

#include <mbgl/gl/gl.hpp>
#include <mbgl/gl/texture_pool.hpp>
#include <mbgl/util/image.hpp>
#include <mbgl/util/ptr.hpp>
#include <mbgl/util/chrono.hpp>

#include <mutex>

namespace mbgl {

class Raster : public std::enable_shared_from_this<Raster> {

public:
    Raster(gl::TexturePool&);
    ~Raster();

    // load image data
    void load(PremultipliedImage);

    // bind current texture
    void bind(bool linear, gl::GLObjectStore&);

    // uploads the texture if it hasn't been uploaded yet.
    void upload(gl::GLObjectStore&);

    // loaded status
    bool isLoaded() const;

public:
    // loaded image dimensions
    GLsizei width = 0;
    GLsizei height = 0;

    // has been uploaded to texture
    bool textured = false;

    // the uploaded texture
    GLuint textureID = 0;

    // texture opacity
    double opacity = 0;

private:
    mutable std::mutex mtx;

    // raw pixels have been loaded
    bool loaded = false;

    // shared texture pool
    gl::TexturePool& texturePool;

    // min/mag filter
    GLint filter = 0;

    // the raw pixels
    PremultipliedImage img;
};

} // namespace mbgl

#endif