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

#include <mbgl/map/tile_data.hpp>

#include <mbgl/renderer/raster_bucket.hpp>


namespace mbgl {

class RasterTileData : public TileData {
    friend class TileParser;

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

    virtual void parse();
    virtual void render(Painter &painter, std::shared_ptr<StyleLayer> layer_desc);
    virtual bool hasData(std::shared_ptr<StyleLayer> layer_desc) const;

protected:
    RasterBucket bucket;
};

}

#endif