blob: b173c9c9923ddc8a1c53a3f5e3cb3eb035993363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TEMPLATE = app
QT += d3d12window widgets
SOURCES = main.cpp window.cpp
HEADERS = window.h
RESOURCES = hellotexture.qrc
LIBS = -ld3d12
VSPS = shader.hlsl
vshader.input = VSPS
vshader.header = shader_vs.h
vshader.entry = VS_Texture
vshader.type = vs_5_0
pshader.input = VSPS
pshader.header = shader_ps.h
pshader.entry = PS_Texture
pshader.type = ps_5_0
HLSL_SHADERS = vshader pshader
load(hlsl)
|