mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
Fixed 24 bit depth copies to RAM. 24 and 16 bit depth copies are now more accurate. Added an offset to DX copies to RAM and made half sized copies to a texture linearly filtered.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4635 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -68,7 +68,7 @@ void SaveTexture(const char* filename, u32 texmap)
|
||||
|
||||
TexImage0& ti0 = texUnit.texImage0[subTexmap];
|
||||
|
||||
SaveTexture(filename, texmap, ti0.width, ti0.height);
|
||||
SaveTexture(filename, texmap, ti0.width + 1, ti0.height + 1);
|
||||
}
|
||||
|
||||
void GetTextureBGRA(u8 *dst, u32 texmap, int width, int height)
|
||||
|
Reference in New Issue
Block a user