mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-22 14:20:54 -05:00
7 lines
125 B
GLSL
7 lines
125 B
GLSL
uint Helper_MultiplyHighU32(uint x, uint y)
|
|
{
|
|
uint msb;
|
|
uint lsb;
|
|
umulExtended(x, y, msb, lsb);
|
|
return msb;
|
|
} |