-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOGL_lab.pro
More file actions
executable file
·52 lines (44 loc) · 963 Bytes
/
Copy pathOGL_lab.pro
File metadata and controls
executable file
·52 lines (44 loc) · 963 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2012-06-25T21:00:29
#
#-------------------------------------------------
QT += core gui
QT += opengl
TARGET = OGL_lab
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
obj.cpp \
camera.cpp \
resourceloader.cpp \
glm.cpp \
lib/targa.cpp \
particles/particleemitter.cpp \
ShapesSphere.cpp \
Shape.cpp \
Vertex3f.cpp \
particles/rain.cpp
HEADERS += mainwindow.h \
glwidget.h \
vector.h \
camera.h \
obj.h \
scene.h \
resourceloader.h \
glm.h \
lib/targa.h \
particles/particleemitter.h \
common.h \
ShapesSphere.h \
Shape.h \
Vertex3f.h \
particles/rain.h
FORMS += mainwindow.ui
OTHER_FILES += \
shaders/toon.frag \
shaders/toon.vert \
shaders/edge_detect.frag \
shaders/edge_enhance.frag \
shaders/combine.frag