summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/assets/TestComputeShaders.lua
diff options
context:
space:
mode:
authorEgor <egor.yusov@gmail.com>2018-02-18 21:43:01 +0000
committerEgor <egor.yusov@gmail.com>2018-02-18 21:43:01 +0000
commit310cccb9cf7752caf3ff99dd9c208601c173bfd8 (patch)
tree1ef888b5a849b672a7c24e83bedaa870d164c0d6 /Tests/TestApp/assets/TestComputeShaders.lua
parentFixed some GLES shader issues (diff)
downloadDiligentEngine-310cccb9cf7752caf3ff99dd9c208601c173bfd8.tar.gz
DiligentEngine-310cccb9cf7752caf3ff99dd9c208601c173bfd8.zip
Reduced size of the compute shader group to 128 to avoid error on some GLES devices
Diffstat (limited to 'Tests/TestApp/assets/TestComputeShaders.lua')
-rw-r--r--Tests/TestApp/assets/TestComputeShaders.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/TestApp/assets/TestComputeShaders.lua b/Tests/TestApp/assets/TestComputeShaders.lua
index 327f4e3..a78da5a 100644
--- a/Tests/TestApp/assets/TestComputeShaders.lua
+++ b/Tests/TestApp/assets/TestComputeShaders.lua
@@ -1,7 +1,7 @@
-- Compute shader test script
ThreadGroupSizeX = 16
-ThreadGroupSizeY = 16
+ThreadGroupSizeY = 8
TestTexture = Texture.Create{
Name = "Compute Shader Test Texture",