1. Removed the custom screen size functions again (the ones I added in revision 2310). All games I tried are now full screen so it's probably not needed any more.

2. Disabled my XFB supplements when the real XFB is on, since they are supposed to supplement each other.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2318 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson 2009-02-20 13:35:43 +00:00
parent e0593b1041
commit cfcfef9b51
6 changed files with 16 additions and 139 deletions

View file

@ -16,7 +16,17 @@
// http://code.google.com/p/dolphin-emu/
// Preliminary non-working code.
/////////////////////////////////////////////////////////////////////////
// File description
/* ---------------
This file handles the External Frame Buffer (XFB). The XFB is a storage point when the picture is resized
by the system to the correct display format for output to the TV. In most cases its function can be
supplemented by the equivalent adjustments in glScissor and glViewport (or their DirectX equivalents). But
for some homebrew games these functions are necessary because the homebrew game communicate directly with
them.
///////////////////////////////////*/
#include "Globals.h"
#include "GLUtil.h"