- disable warnings

This commit is contained in:
Ilya Shurumov 2020-07-24 22:46:50 +06:00
parent 483febf243
commit 0b1b91d5a1

View File

@ -1,3 +1,8 @@
#ifdef _MSC_VER
#pragma warning(disable: 4309)
#pragma warning(disable: 4838)
#endif
// LUT for cos and sin // LUT for cos and sin
// 8192 entries, even entry = Sin, odd entry = Cos // 8192 entries, even entry = Sin, odd entry = Cos
// take TR angle (between 0 and 65535), shift R by 3 (to get between 0 and 8191), and with 8190 (to get between 0 and 8190) // take TR angle (between 0 and 65535), shift R by 3 (to get between 0 and 8191), and with 8190 (to get between 0 and 8190)