diff options
| author | neobrain <neobrainx@gmail.com> | 2014-01-31 03:42:06 -0800 |
|---|---|---|
| committer | neobrain <neobrainx@gmail.com> | 2014-01-31 03:42:06 -0800 |
| commit | 0735fb7a52876939bebda82be89145b1aa344606 (patch) | |
| tree | d647db3292cb179f1494c462ae0b61b02b03a609 /Source/Core/VideoCommon/OpcodeDecoding.cpp | |
| parent | 91fc1d74384c50d7e1c69a080a70235cabe70908 (diff) | |
| parent | 91cddd874b4762fbca2c02aa3796f83e77b33320 (diff) | |
Merge pull request #13 from degasus/dlCacheRemove
Remove Display List caching.
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp index f469bc7f6d..4211bd650d 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp @@ -112,15 +112,6 @@ void InterpretDisplayList(u32 address, u32 size) g_pVideoData = old_pVideoData; } -// Defer to backend-specific DL cache. -extern bool HandleDisplayList(u32 address, u32 size); - -void ExecuteDisplayList(u32 address, u32 size) -{ - if (!HandleDisplayList(address, size)) - InterpretDisplayList(address, size); -} - u32 FifoCommandRunnable(u32 &command_size) { u32 cycleTime = 0; @@ -337,7 +328,7 @@ static void Decode() { u32 address = DataReadU32(); u32 count = DataReadU32(); - ExecuteDisplayList(address, count); + InterpretDisplayList(address, count); } break; |
