mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 14:52:26 -07:00
Mostly copied from GLSL since in terms of syntax within blocks they’re pretty similar. Likely the result will need tweaking… Isn’t that conveniant? “Do the simd_shuffle” atomics Remaining instructions Remove removed special instructions Getting somewhere…
5 lines
89 B
Metal
5 lines
89 B
Metal
inline bool voteAllEqual(bool value)
|
|
{
|
|
return simd_all(value) || !simd_any(value);
|
|
}
|