Skip to content

Commit

Permalink
Fix uint constructor. Was being double-flipped
Browse files Browse the repository at this point in the history
  • Loading branch information
redorav committed Sep 12, 2020
1 parent 863572d commit fb35628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/platforms/hlsl++_sse.h
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ hlslpp_inline n256i _hlslpp256_or_si128(n256i x, n256i y)
//-----------------

#define _hlslpp_set1_epu32(x) _hlslpp_set1_epi32((x))
#define _hlslpp_set_epu32(x, y, z, w) _hlslpp_set_epi32((w), (z), (y), (x))
#define _hlslpp_set_epu32(x, y, z, w) _hlslpp_set_epi32((x), (y), (z), (w))
#define _hlslpp_setzero_epu32() _hlslpp_setzero_epi32()

#define _hlslpp_add_epu32(x, y) _hlslpp_add_epi32((x), (y))
Expand Down

0 comments on commit fb35628

Please sign in to comment.