mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:48:34 +00:00
7 lines
254 B
Plaintext
7 lines
254 B
Plaintext
|
float Helper_SwizzleAdd(float x, float y, int mask)
|
||
|
{
|
||
|
vec4 xLut = vec4(1.0, -1.0, 1.0, 0.0);
|
||
|
vec4 yLut = vec4(1.0, 1.0, -1.0, 1.0);
|
||
|
int lutIdx = mask >> int(gl_SubGroupInvocationARB & 3u) * 2;
|
||
|
return x * xLut[lutIdx] + y * yLut[lutIdx];
|
||
|
}
|