mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-09 11:01:29 -06:00
vk: Fix word index counting for shuffle tasks
This commit is contained in:
parent
175f78f5b3
commit
ac4cadf538
@ -280,7 +280,8 @@ namespace vk
|
||||
"void main()\n"
|
||||
"{\n"
|
||||
" uint invocations_x = (gl_NumWorkGroups.x * gl_WorkGroupSize.x);"
|
||||
" uint index = (gl_GlobalInvocationID.y * invocations_x) + gl_GlobalInvocationID.x;\n"
|
||||
" uint invocation_id = (gl_GlobalInvocationID.y * invocations_x) + gl_GlobalInvocationID.x;\n"
|
||||
" uint index = invocation_id * KERNEL_SIZE;\n"
|
||||
" uint value;\n"
|
||||
" %vars"
|
||||
"\n";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user