mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
D3D: Replaced shader-based depth range remap with viewport
This fixes UI rendering in some games mentioned in https://code.google.com/p/dolphin-emu/issues/detail?id=7785
This commit is contained in:
parent
d4125231f3
commit
cc2227fbc3
2 changed files with 3 additions and 3 deletions
|
@ -405,7 +405,7 @@ static inline void GenerateVertexShader(T& out, u32 components, API_TYPE api_typ
|
|||
//if not early z culling will improve speed
|
||||
if (api_type == API_D3D)
|
||||
{
|
||||
out.Write("o.pos.z = " I_DEPTHPARAMS".x * o.pos.w + o.pos.z * " I_DEPTHPARAMS".y;\n");
|
||||
out.Write("o.pos.z = o.pos.w + o.pos.z;\n");
|
||||
}
|
||||
else // OGL
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue