We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3294d04 commit e2401c6Copy full SHA for e2401c6
include/nbl/builtin/hlsl/emulated/int64_t.hlsl
@@ -370,12 +370,14 @@ constexpr inline emulated_int64_base<Signed> emulated_int64_base<Signed>::operat
370
return leftShift(*this, bits);
371
}
372
373
+template<>
374
constexpr inline emulated_uint64_t emulated_uint64_t::operator>>(uint32_t bits) const
375
{
376
arithmetic_right_shift_operator<emulated_uint64_t> rightShift;
377
return rightShift(*this, bits);
378
379
380
381
constexpr inline emulated_int64_t emulated_int64_t::operator>>(uint32_t bits) const
382
383
arithmetic_right_shift_operator<emulated_int64_t> rightShift;
0 commit comments