summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/assets/TestRenderScripts.lua
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-07-02 16:48:04 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-07-02 16:48:04 +0000
commita7bce1b27c4f1fe3d96859588f23f86d2b4d595d (patch)
tree323fdf550fabca56a8bd77dae4989a693d78a69d /Tests/TestApp/assets/TestRenderScripts.lua
parentUpdated tests (diff)
downloadDiligentEngine-a7bce1b27c4f1fe3d96859588f23f86d2b4d595d.tar.gz
DiligentEngine-a7bce1b27c4f1fe3d96859588f23f86d2b4d595d.zip
Updated unit tests to set DSV format in PSO
Diffstat (limited to 'Tests/TestApp/assets/TestRenderScripts.lua')
-rw-r--r--Tests/TestApp/assets/TestRenderScripts.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/TestApp/assets/TestRenderScripts.lua b/Tests/TestApp/assets/TestRenderScripts.lua
index 6aa43fa..7b53735 100644
--- a/Tests/TestApp/assets/TestRenderScripts.lua
+++ b/Tests/TestApp/assets/TestRenderScripts.lua
@@ -85,7 +85,7 @@ PSO = PipelineState.Create
pVS = MinimalVS,
pPS = UniformBufferPS,
RTVFormats = extBackBufferFormat,
- DSVFormat = "TEX_FORMAT_UNKNOWN",
+ DSVFormat = extDepthBufferFormat
},
SRBAllocationGranularity = 16
}
@@ -123,7 +123,7 @@ PSOInst = PipelineState.Create
pVS = MinimalInstVS,
pPS = UniformBufferPS,
RTVFormats = extBackBufferFormat,
- DSVFormat = "TEX_FORMAT_D32_FLOAT",
+ DSVFormat = extDepthBufferFormat
}
}
SRBInst = PSOInst:CreateShaderResourceBinding()