summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/TextureDecoder.h
diff options
context:
space:
mode:
authorNolan Check <Nolan.Check@gmail.com>2009-05-13 02:06:02 +0000
committerNolan Check <Nolan.Check@gmail.com>2009-05-13 02:06:02 +0000
commitdcad8a779daf58ea748369547a965e96b7912473 (patch)
tree516836dee06889192b68a2a2f4d591a75207dc4b /Source/Core/VideoCommon/Src/TextureDecoder.h
parent7c75b01dbfe460c2e3ef4062cf3baa616a21f02a (diff)
TextureDecoder now indicates I4 and IA4 texture formats. It also decodes paletted textures more efficiently.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3213 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/TextureDecoder.h')
-rw-r--r--Source/Core/VideoCommon/Src/TextureDecoder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.h b/Source/Core/VideoCommon/Src/TextureDecoder.h
index 9acd3ebc22..f941da9c9c 100644
--- a/Source/Core/VideoCommon/Src/TextureDecoder.h
+++ b/Source/Core/VideoCommon/Src/TextureDecoder.h
@@ -75,7 +75,8 @@ enum PC_TexFormat
PC_TEX_FMT_NONE = 0,
PC_TEX_FMT_BGRA32,
PC_TEX_FMT_RGBA32,
- PC_TEX_FMT_IA4,
+ PC_TEX_FMT_I4_AS_I8,
+ PC_TEX_FMT_IA4_AS_IA8,
PC_TEX_FMT_I8,
PC_TEX_FMT_IA8,
PC_TEX_FMT_RGB565,