File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,7 @@ _HLSL_16BIT_AVAILABILITY(shadermodel, 6.2)
9494constexpr __detail::enable_if_t<__detail::is_same<int16_t, T>::value ||
9595 __detail::is_same<uint16_t, T>::value ||
9696 __detail::is_same<half, T>::value,
97- vector<uint16_t, N>>
98- asuint16(vector<T, N> V) {
97+ vector<uint16_t, N>> asuint16(vector<T, N> V) {
9998 return __detail::bit_cast<uint16_t , T, N>(V);
10099}
101100
@@ -104,8 +103,7 @@ _HLSL_16BIT_AVAILABILITY(shadermodel, 6.2)
104103constexpr __detail::enable_if_t<__detail::is_same<int16_t, T>::value ||
105104 __detail::is_same<uint16_t, T>::value ||
106105 __detail::is_same<half, T>::value,
107- uint16_t>
108- asuint16(T F) {
106+ uint16_t> asuint16(T F) {
109107 return __detail::bit_cast<uint16_t , T>(F);
110108}
111109#endif
You can’t perform that action at this time.
0 commit comments