summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/OpcodeDecoding.h
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-08-09 11:03:58 +0000
committerhrydgard <hrydgard@gmail.com>2009-08-09 11:03:58 +0000
commit6003c9ecd2b624a2ef78a7ae14918eb275a118f5 (patch)
treea7155369aa31623c0067617b7e3886145a3cb0c6 /Source/Core/VideoCommon/Src/OpcodeDecoding.h
parent95b39da7cad68e1bd1a9c8be713ab1df7988f3d0 (diff)
Frameskipping more aggressive (minor speedup, plz report any serious problems). Initial display list cache implementation, disabled for now. Various cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3952 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.h')
-rw-r--r--Source/Core/VideoCommon/Src/OpcodeDecoding.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.h b/Source/Core/VideoCommon/Src/OpcodeDecoding.h
index cb724dbc06..b4472927ba 100644
--- a/Source/Core/VideoCommon/Src/OpcodeDecoding.h
+++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.h
@@ -29,6 +29,7 @@
#define GX_LOAD_INDX_D 0x38
#define GX_CMD_CALL_DL 0x40
+#define GX_CMD_UNKNOWN_METRICS 0x44
#define GX_CMD_INVL_VC 0x48
#define GX_PRIMITIVE_MASK 0x78
@@ -46,6 +47,6 @@
void OpcodeDecoder_Init();
void OpcodeDecoder_Shutdown();
-void OpcodeDecoder_Run();
+void OpcodeDecoder_Run(bool skipped_frame);
#endif // _OPCODE_DECODING_H