mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 01:37:49 +00:00
astc_decoder: Reduce workgroup size
This reduces the amount of over dispatching when there are odd dimensions (i.e. ASTC 8x5), which rarely evenly divide into 32x32.
This commit is contained in:
parent
2ff4eb5def
commit
bfb2325618
3 changed files with 5 additions and 5 deletions
|
@ -22,7 +22,7 @@
|
|||
|
||||
#endif
|
||||
|
||||
layout(local_size_x = 32, local_size_y = 32, local_size_z = 1) in;
|
||||
layout(local_size_x = 8, local_size_y = 8, local_size_z = 1) in;
|
||||
|
||||
BEGIN_PUSH_CONSTANTS
|
||||
UNIFORM(1) uvec2 block_dims;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue