Add test shader for coherent SSBO.

This commit is contained in:
Hans-Kristian Arntzen 2017-08-28 09:02:08 +02:00
parent 713bd7c2b5
commit 536d888a92
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#version 310 es
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
layout(binding = 1, std430) coherent restrict writeonly buffer SSBO
{
vec4 value;
} _10;
void main()
{
_10.value = vec4(20.0);
}

View File

@ -0,0 +1,12 @@
#version 310 es
layout(local_size_x = 1) in;
layout(binding = 1) coherent restrict writeonly buffer SSBO
{
vec4 value;
};
void main()
{
value = vec4(20.0);
}