aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hellocompressedtexture/hellocompressedtexture.pro
blob: 6db7ae5daffe6ddc90411b67fc15dce2a929c2c5 (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 = hellocompressedtexture.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)