summaryrefslogtreecommitdiff
path: root/include/mbgl/map/raster_tile_data.hpp
blob: 14833c0d84e27e869b4524b942b96da08cf49551 (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
#ifndef MBGL_MAP_RASTER_TILE_DATA
#define MBGL_MAP_RASTER_TILE_DATA

#include <mbgl/map/tile.hpp>
#include <mbgl/map/tile_data.hpp>
#include <mbgl/renderer/raster_bucket.hpp>

namespace mbgl {

class Map;
class Painter;
class SourceInfo;
class StyleLayer;

class RasterTileData : public TileData {
    friend class TileParser;

public:
    RasterTileData(Tile::ID id, Map &map, const util::ptr<SourceInfo> &source);
    ~RasterTileData();

    virtual void parse();
    virtual void render(Painter &painter, util::ptr<StyleLayer> layer_desc, const mat4 &matrix);
    virtual bool hasData(util::ptr<StyleLayer> layer_desc) const;

protected:
    StyleBucketRaster properties;
    RasterBucket bucket;
};

}

#endif