Try to add compute shaders

This commit is contained in:
2023-04-11 14:55:57 +01:00
parent 69a76dbf93
commit d79216555b
21 changed files with 457 additions and 246 deletions
+7
View File
@@ -0,0 +1,7 @@
#version 450 core
layout(local_size_x= 1, local_size_y=1) in;
uniform sampler2DArray screenTexture;
layout(rgba8, binding = 5) uniform restrict writeonly image2D img_output;
void main()
{
}