summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/assets/TestRenderScripts.lua
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-11-21 18:01:10 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-11-21 18:01:10 +0000
commit41e5a5404dd18c748a8355c0796d5e53f793c3b9 (patch)
tree58af8fabc3132d1edce8248ae5f5eaf53bbd6f42 /Tests/TestApp/assets/TestRenderScripts.lua
parentFixed release history (diff)
downloadDiligentEngine-41e5a5404dd18c748a8355c0796d5e53f793c3b9.tar.gz
DiligentEngine-41e5a5404dd18c748a8355c0796d5e53f793c3b9.zip
Implemented explicit resource state transitions
Diffstat (limited to 'Tests/TestApp/assets/TestRenderScripts.lua')
-rw-r--r--Tests/TestApp/assets/TestRenderScripts.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/Tests/TestApp/assets/TestRenderScripts.lua b/Tests/TestApp/assets/TestRenderScripts.lua
index da54b6d..a181c20 100644
--- a/Tests/TestApp/assets/TestRenderScripts.lua
+++ b/Tests/TestApp/assets/TestRenderScripts.lua
@@ -181,17 +181,6 @@ UnfiformBuffer1 = Buffer.Create(
BindFlags = "BIND_UNIFORM_BUFFER", Usage = "USAGE_DYNAMIC", CPUAccessFlags = "CPU_ACCESS_WRITE" }
)
-DrawAttrs1 = DrawAttribs.Create{
- NumVertices = 3
-}
-
-DrawAttrs2 = DrawAttribs.Create{
- IsIndexed = true,
- NumIndices = 3,
- IndexType = "VT_UINT32",
- NumInstances = 3
-}
-
ResMapping = ResourceMapping.Create{
{Name = "cbTestBlock", pObject = UnfiformBuffer1}
}