Skip to content

Commit

Permalink
fix workgroup size in copy-image
Browse files Browse the repository at this point in the history
  • Loading branch information
Try committed Jul 23, 2024
1 parent 6a9fcca commit 6c7e9c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shader/copy_img.comp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#extension GL_EXT_samplerless_texture_functions : enable

layout(local_size_x = 8, local_size_x = 8) in;
layout(local_size_x = 8, local_size_y = 8) in;

layout(binding = 0) uniform writeonly image2D dst;
layout(binding = 1) uniform texture2D src;
Expand Down

0 comments on commit 6c7e9c7

Please sign in to comment.