Changed descriptor type for compute shader image read, updated shaders
This commit is contained in:
parent
86d286b46e
commit
2b7e887bfc
10 changed files with 17 additions and 10 deletions
|
|
@ -3,8 +3,8 @@
|
|||
#extension GL_ARB_separate_shader_objects : enable
|
||||
#extension GL_ARB_shading_language_420pack : enable
|
||||
|
||||
layout (local_size_x =16, local_size_y = 16) in;
|
||||
layout (binding = 0, rgba8) uniform image2D inputImage;
|
||||
layout (local_size_x = 16, local_size_y = 16) in;
|
||||
layout (binding = 0, rgba8) uniform readonly image2D inputImage;
|
||||
layout (binding = 1, rgba8) uniform image2D resultImage;
|
||||
|
||||
float conv(in float[9] kernel, in float[9] data, in float denom, in float offset)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue