mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-01 08:48:35 +00:00
Create a config dialog. Add dumping TEV texture fetches. Better TEV stage dumping. Byteswap indexed XF loading. Remove scaling texture coordinates in the HW rasterizer because that has already been done by the time they reach the rasterizer. Increase storage for clipper.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6506 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f91ac92895
commit
8f035ae40a
17 changed files with 419 additions and 51 deletions
|
@ -92,5 +92,10 @@ void LoadIndexedXF(u32 val, int array)
|
|||
|
||||
u32 *pData = (u32*)g_VideoInitialize.pGetMemoryPointer(arraybases[array] + arraystrides[array]*index);
|
||||
|
||||
LoadXFReg(size, address, pData);
|
||||
// byteswap data
|
||||
u32 buffer[16];
|
||||
for (int i = 0; i < size; ++i)
|
||||
buffer[i] = Common::swap32(*(pData + i));
|
||||
|
||||
LoadXFReg(size, address, buffer);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue