aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hellomultisample/hellomultisample.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hellomultisample/hellomultisample.pro')
-rw-r--r--examples/hellomultisample/hellomultisample.pro22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/hellomultisample/hellomultisample.pro b/examples/hellomultisample/hellomultisample.pro
new file mode 100644
index 0000000..0d36378
--- /dev/null
+++ b/examples/hellomultisample/hellomultisample.pro
@@ -0,0 +1,22 @@
+TEMPLATE = app
+QT += d3d12window widgets
+
+SOURCES = main.cpp window.cpp
+HEADERS = window.h
+
+LIBS = -ld3d12
+
+VSPS = shader.hlsl
+
+vshader.input = VSPS
+vshader.header = shader_vs.h
+vshader.entry = VS_Simple
+vshader.type = vs_5_0
+
+pshader.input = VSPS
+pshader.header = shader_ps.h
+pshader.entry = PS_Simple
+pshader.type = ps_5_0
+
+HLSL_SHADERS = vshader pshader
+load(hlsl)