Added 'fmod' overload to GTX_common with tests, Removed integer specification for 'mod' in GTC_integer #308

This commit is contained in:
Christophe Riccio
2015-02-15 12:38:23 +01:00
parent 594380dcb6
commit 042270d049
8 changed files with 173 additions and 71 deletions

View File

@@ -30,7 +30,13 @@
///////////////////////////////////////////////////////////////////////////////////
#include <glm/trigonometric.hpp>
/*
float sin(float x) {
float temp;
temp = (x + M_PI) / ((2 * M_PI) - M_PI);
return limited_sin((x + M_PI) - ((2 * M_PI) - M_PI) * temp));
}
*/
int main()
{
int Failed = 0;