ソースを参照

core: fix compilation warnings in one of the float-to-half LUTs.

legacy
Sam Hocevar sam 13年前
コミット
5d01ca923a
1個のファイルの変更2行の追加4行の削除
  1. +2
    -4
      src/half.cpp

+ 2
- 4
src/half.cpp ファイルの表示

@@ -46,13 +46,11 @@ static inline uint16_t float_to_half_nobranch(uint32_t x)
static uint16_t const basetable[512] =
{
#define S1(i) (((i) < 103) ? 0x0000 : \
((i) < 113) ? 0x0400 >> (113 - (i)) : \
((i) < 113) ? 0x0400 >> (0x1f & (113 - (i))) : \
((i) < 143) ? ((i) - 112) << 10 : 0x7c00)
S256(0),
#undef S1
#define S1(i) (0x8000 | (((i) < 103) ? 0x0000 : \
((i) < 113) ? 0x0400 >> (113 - (i)) : \
((i) < 143) ? ((i) - 112) << 10 : 0x7c00))
#define S1(i) (0x8000 | basetable[i])
S256(0),
#undef S1
};


読み込み中…
キャンセル
保存