Merge pull request #56 from JayFoxRox/fix-arl

Also floor() negative numbers in ARL
This commit is contained in:
Jannik Vogel 2015-09-04 03:20:45 +02:00
commit 0368e43365
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ static const char* vsh_header =
"#define ARL(dest, src) dest = _ARL(_in(src).x)\n"
"int _ARL(float src)\n"
"{\n"
" return int(src);\n"
" return int(floor(src));\n"
"}\n"
"\n"
"#define SGE(dest, mask, src0, src1) dest.mask = _SGE(_in(src0), _in(src1)).mask\n"