Welcome to mirror list, hosted at ThFree Co, Russian Federation.

render.pro « render - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bfecbf038fb7478f7d638e038d6a0af1d67df7a (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
73
74
75
76
77
TARGET = render
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/protobuf/src $$ROOT_DIR/3party/expat/lib $$ROOT_DIR/3party/freetype/include

SOURCES += \
    software_renderer.cpp \
    gpu_drawer.cpp \
    cpu_drawer.cpp \
    agg_curves.cpp \
    drawer.cpp \
    feature_info.cpp \
    feature_styler.cpp \
    geometry_processors.cpp \
    proto_to_styles.cpp \
    text_engine.cpp \
    default_font.cpp \
    window_handle.cpp \
    render_policy.cpp \
    route_renderer.cpp \
    route_shape.cpp \
    tiling_render_policy_st.cpp \
    tiling_render_policy_mt.cpp \
    simple_render_policy.cpp \
    queued_renderer.cpp \
    basic_tiling_render_policy.cpp \
    tiler.cpp \
    tile.cpp \
    tile_cache.cpp \
    tile_set.cpp \
    tile_renderer.cpp \
    feature_processor.cpp \
    events.cpp \
    coverage_generator.cpp \
    scales_processor.cpp \
    yopme_render_policy.cpp \


HEADERS += \
    software_renderer.hpp \
    gpu_drawer.hpp \
    cpu_drawer.hpp \
    frame_image.hpp \
    drawer.hpp \
    feature_info.hpp \
    feature_styler.hpp \
    path_info.hpp \
    area_info.hpp \
    geometry_processors.hpp \
    proto_to_styles.hpp \
    text_engine.h \
    point.h \
    rect.h \
    route_renderer.hpp \
    route_shape.hpp \
    window_handle.hpp \
    render_policy.hpp \
    tiling_render_policy_st.hpp \
    tiling_render_policy_mt.hpp \
    simple_render_policy.hpp \
    queued_renderer.hpp \
    basic_tiling_render_policy.hpp \
    tiler.hpp \
    tile.hpp \
    tile_cache.hpp \
    tile_set.hpp \
    tile_renderer.hpp \
    feature_processor.hpp \
    events.hpp \
    coverage_generator.hpp \
    scales_processor.hpp \
    yopme_render_policy.hpp \