mirror of https://github.com/xemu-project/xemu.git
Merge pull request #48 from JayFoxRox/fix-kung-fu-chaos
Avoid multiplying xyz by w=zero
This commit is contained in:
commit
b42d8c5344
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue