Avoid multiplying xyz by w=zero

This commit is contained in:
Jannik Vogel 2015-09-01 19:24:19 +02:00
parent 967feb8c40
commit 3017fcf6e3
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"