Properly emulate the alpha read pixel engine register function (used for EFB peeks).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6313 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX
2010-10-24 19:52:52 +00:00
parent b71cd5f383
commit ab53c84dcf
5 changed files with 87 additions and 38 deletions

View File

@ -54,6 +54,17 @@ enum
namespace PixelEngine
{
// ReadMode specifies the returned alpha channel for EFB peeks
union UPEAlphaReadReg
{
u16 Hex;
struct
{
u16 ReadMode : 3;
u16 : 13;
};
};
void Init();
void DoState(PointerWrap &p);