mirror of https://github.com/xemu-project/xemu.git
probably don't divide by zero when normalizing vsh output depth
This commit is contained in:
parent
60c0d7e433
commit
3afc4facd3
|
@ -779,7 +779,9 @@ QString* vsh_translate(uint16_t version,
|
|||
" /* Un-screenspace transform */\n"
|
||||
"oPos.x = (oPos.x - viewportOffset.x) / viewportScale.x;\n"
|
||||
"oPos.y = (oPos.y - viewportOffset.y) / viewportScale.y;\n"
|
||||
"oPos.z = (oPos.z - 0.5 * (clipRange.x + clipRange.y)) / (0.5 * (clipRange.y - clipRange.x));\n"
|
||||
"if (clipRange.y != clipRange.x) {\n"
|
||||
" oPos.z = (oPos.z - 0.5 * (clipRange.x + clipRange.y)) / (0.5 * (clipRange.y - clipRange.x));\n"
|
||||
"}\n"
|
||||
|
||||
"if (oPos.w <= 0.0) {\n"
|
||||
/* undo the perspective divide in the case where the point would be
|
||||
|
|
Loading…
Reference in New Issue