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

drape_common.pri « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a036a878a10ca42abedda5d67604f4ee4a641fb (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
CMDRES = $$system(python ../tools/autobuild/shader_preprocessor.py $$SHADER_COMPILE_ARGS)
!isEmpty($$CMDRES):message($$CMDRES)

INCLUDEPATH *= $$ROOT_DIR/3party/freetype/include

SOURCES += \
    $$ROOT_DIR/3party/sdf_image/sdf_image.cpp \
    $$ROOT_DIR/3party/stb_image/stb_image.c \
    $$DRAPE_DIR/data_buffer.cpp \
    $$DRAPE_DIR/binding_info.cpp \
    $$DRAPE_DIR/batcher.cpp \
    $$DRAPE_DIR/attribute_provider.cpp \
    $$DRAPE_DIR/vertex_array_buffer.cpp \
    $$DRAPE_DIR/uniform_value.cpp \
    $$DRAPE_DIR/texture.cpp \
    $$DRAPE_DIR/shader.cpp \
    $$DRAPE_DIR/index_buffer.cpp \
    $$DRAPE_DIR/gpu_program.cpp \
    $$DRAPE_DIR/gpu_program_manager.cpp \
    $$DRAPE_DIR/glconstants.cpp \
    $$DRAPE_DIR/glstate.cpp \
    $$DRAPE_DIR/gpu_buffer.cpp \
    $$DRAPE_DIR/shader_def.cpp \
    $$DRAPE_DIR/glextensions_list.cpp \
    $$DRAPE_DIR/pointers.cpp \
    $$DRAPE_DIR/uniform_values_storage.cpp \
    $$DRAPE_DIR/color.cpp \
    $$DRAPE_DIR/oglcontextfactory.cpp \
    $$DRAPE_DIR/buffer_base.cpp \
    $$DRAPE_DIR/cpu_buffer.cpp \
    $$DRAPE_DIR/symbols_texture.cpp \
    $$DRAPE_DIR/texture_manager.cpp \
    $$DRAPE_DIR/render_bucket.cpp \
    $$DRAPE_DIR/overlay_handle.cpp \
    $$DRAPE_DIR/index_buffer_mutator.cpp \
    $$DRAPE_DIR/batcher_helpers.cpp \
    $$DRAPE_DIR/overlay_tree.cpp \
    $$DRAPE_DIR/font_texture.cpp \
    $$DRAPE_DIR/attribute_buffer_mutator.cpp \
    $$DRAPE_DIR/stipple_pen_resource.cpp \
    $$DRAPE_DIR/texture_of_colors.cpp \
    $$DRAPE_DIR/glyph_manager.cpp \
    $$DRAPE_DIR/utils/vertex_decl.cpp \
    $$DRAPE_DIR/utils/projection.cpp \

HEADERS += \
    $$ROOT_DIR/3party/sdf_image/sdf_image.h \
    $$ROOT_DIR/3party/stb_image/stb_image.h \
    $$DRAPE_DIR/data_buffer.hpp \
    $$DRAPE_DIR/binding_info.hpp \
    $$DRAPE_DIR/batcher.hpp \
    $$DRAPE_DIR/attribute_provider.hpp \
    $$DRAPE_DIR/vertex_array_buffer.hpp \
    $$DRAPE_DIR/uniform_value.hpp \
    $$DRAPE_DIR/texture.hpp \
    $$DRAPE_DIR/shader.hpp \
    $$DRAPE_DIR/pointers.hpp \
    $$DRAPE_DIR/index_buffer.hpp \
    $$DRAPE_DIR/gpu_program.hpp \
    $$DRAPE_DIR/gpu_program_manager.hpp \
    $$DRAPE_DIR/glstate.hpp \
    $$DRAPE_DIR/glIncludes.hpp \
    $$DRAPE_DIR/glconstants.hpp \
    $$DRAPE_DIR/glfunctions.hpp \
    $$DRAPE_DIR/gpu_buffer.hpp \
    $$DRAPE_DIR/shader_def.hpp \
    $$DRAPE_DIR/glextensions_list.hpp \
    $$DRAPE_DIR/oglcontext.hpp \
    $$DRAPE_DIR/uniform_values_storage.hpp \
    $$DRAPE_DIR/color.hpp \
    $$DRAPE_DIR/oglcontextfactory.hpp \
    $$DRAPE_DIR/buffer_base.hpp \
    $$DRAPE_DIR/cpu_buffer.hpp \
    $$DRAPE_DIR/symbols_texture.hpp \
    $$DRAPE_DIR/texture_manager.hpp \
    $$DRAPE_DIR/render_bucket.hpp \
    $$DRAPE_DIR/overlay_handle.hpp \
    $$DRAPE_DIR/index_buffer_mutator.hpp \
    $$DRAPE_DIR/batcher_helpers.hpp \
    $$DRAPE_DIR/overlay_tree.hpp \
    $$DRAPE_DIR/font_texture.hpp \
    $$DRAPE_DIR/attribute_buffer_mutator.hpp \
    $$DRAPE_DIR/drape_global.hpp \
    $$DRAPE_DIR/object_pool.hpp \
    $$DRAPE_DIR/stipple_pen_resource.hpp \
    $$DRAPE_DIR/dynamic_texture.hpp \
    $$DRAPE_DIR/texture_of_colors.hpp \
    $$DRAPE_DIR/glsl_types.hpp \
    $$DRAPE_DIR/glsl_func.hpp \
    $$DRAPE_DIR/glyph_manager.hpp \
    $$DRAPE_DIR/utils/vertex_decl.hpp \
    $$DRAPE_DIR/utils/projection.hpp \