mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #748 from raven02/hw-fix
Fix texture stretched vertically in HW T&L
This commit is contained in:
commit
d9e1faa9c4
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ void GenerateVertexShader(int prim, char *buffer) {
|
|||
break;
|
||||
}
|
||||
if (flipV)
|
||||
WRITE(p, " v_texcoord.y = 1.0 - v_texcoord.y;\n");
|
||||
WRITE(p, " v_texcoord.y = 1.0 - v_texcoord.y * 2.0;\n");
|
||||
}
|
||||
|
||||
// Compute fogdepth
|
||||
|
|
Loading…
Add table
Reference in a new issue