info about new files

This commit is contained in:
Roman Sorokin 2014-07-25 12:00:29 +03:00 committed by Alex Zolotarev
parent f5e4dff2f0
commit a4ef36bd33
4 changed files with 7 additions and 2 deletions

View file

@ -31,3 +31,5 @@ OTHER_FILES += \
shaders/normalize_vertex_shader.vsh \
shaders/font_fragment_shader.fsh \
shaders/font_vertex_shader.vsh \
shaders/path_font_fragment_shader.fsh \
shaders/path_font_vertex_shader.vsh \

View file

@ -4,3 +4,4 @@ TEXTURING_PROGRAM texturing_vertex_shader.vsh texturing_fragment_shader.fsh
SOLID_LINE_PROGRAM line_vertex_shader.vsh line_fragment_shader.fsh
TEST_DYN_ATTR_PROGRAM normalize_vertex_shader.vsh solid_color_fragment_shader.fsh
FONT_PROGRAM font_vertex_shader.vsh font_fragment_shader.fsh
PATH_FONT_PROGRAM path_font_vertex_shader.vsh path_font_fragment_shader.fsh

View file

@ -35,6 +35,7 @@ SOURCES += \
circle_shape.cpp \
render_group.cpp \
text_shape.cpp \
path_text_shape.cpp \
HEADERS += \
engine_context.hpp \
@ -65,3 +66,4 @@ HEADERS += \
circle_shape.hpp \
render_group.hpp \
text_shape.hpp \
path_text_shape.hpp \

View file

@ -33,7 +33,7 @@ HEADERS += \
qtoglcontext.hpp \
qtoglcontextfactory.hpp \
drape_surface.hpp \
testing_engine.hpp
testing_engine.hpp \
SOURCES += \
mainwindow.cpp \
@ -41,4 +41,4 @@ SOURCES += \
qtoglcontext.cpp \
qtoglcontextfactory.cpp \
drape_surface.cpp \
testing_engine.cpp
testing_engine.cpp \