summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/TextureDecoder.h
diff options
context:
space:
mode:
authormemberTwo.mb2 <memberTwo.mb2@gmail.com>2008-12-04 22:55:17 +0000
committermemberTwo.mb2 <memberTwo.mb2@gmail.com>2008-12-04 22:55:17 +0000
commitbc3a7bdce3c29cccca836259e1f50fe830a39ae7 (patch)
tree7283cb12b1b56b179c134f031eee316542f42694 /Source/Core/VideoCommon/Src/TextureDecoder.h
parent83e4bd2e5f8546817c23037dd12d9a1dfd0b4ff8 (diff)
Better tlut hash for fixing MPs font. Didn't notice any slowdown for now.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1402 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/TextureDecoder.h')
-rw-r--r--Source/Core/VideoCommon/Src/TextureDecoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.h b/Source/Core/VideoCommon/Src/TextureDecoder.h
index 2c0647f737..b981f3384c 100644
--- a/Source/Core/VideoCommon/Src/TextureDecoder.h
+++ b/Source/Core/VideoCommon/Src/TextureDecoder.h
@@ -77,8 +77,8 @@ enum PC_TexFormat
PC_TexFormat TexDecoder_Decode(u8 *dst, const u8 *src, int width, int height, int texformat, int tlutaddr, int tlutfmt);
-//u32 TexDecoder_GetSafeTextureHash(const u8 *src, int width, int height, int texformat);
u32 TexDecoder_GetSafeTextureHash(const u8 *src, int width, int height, int texformat, u32 seed=0);
+u32 TexDecoder_GetTlutHash(const u16 *src, int len);
void TexDecoder_SetTexFmtOverlayOptions(bool enable, bool center);