Revert since It flips Commercial games that use XFB + 3D, but makes Homebrew that uses ONLY XFB look correct the old way. Annoying
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@883 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
bd2c7015b3
commit
15d58692fd
|
@ -144,10 +144,10 @@ void XFB_Draw(u8 *xfb_in_ram, u32 width, u32 height, s32 yOffset)
|
|||
GL_REPORT_ERRORD();
|
||||
|
||||
glBegin(GL_QUADS);
|
||||
glTexCoord2f(width, height + yOffset); glVertex2f(1,-1);
|
||||
glTexCoord2f(width, 0 + yOffset); glVertex2f(1,1);
|
||||
glTexCoord2f(0, 0 + yOffset); glVertex2f(-1,1);
|
||||
glTexCoord2f(0, height + yOffset); glVertex2f(-1,-1);
|
||||
glTexCoord2f(width, height + yOffset); glVertex2f(-1,-1);
|
||||
glTexCoord2f(width, 0 + yOffset); glVertex2f(-1,1);
|
||||
glTexCoord2f(0, 0 + yOffset); glVertex2f(1,1);
|
||||
glTexCoord2f(0, height + yOffset); glVertex2f(1,-1);
|
||||
glEnd();
|
||||
|
||||
glBindTexture(GL_TEXTURE_RECTANGLE_ARB, 0);
|
||||
|
|
Loading…
Reference in New Issue