Merge pull request #48 from JayFoxRox/fix-kung-fu-chaos

Avoid multiplying xyz by w=zero
This commit is contained in:
espes 2015-09-02 05:25:26 +10:00
commit b42d8c5344
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ QString* vsh_translate(uint16_t version,
"}\n"
/* Correct for the perspective divide */
"if (oPos.w <= 0.0) {\n"
"if (oPos.w < 0.0) {\n"
/* undo the perspective divide in the case where the point would be
* clipped so opengl can clip it correctly */
" oPos.xyz *= oPos.w;\n"