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/PixelEngine.cpp | |
| parent | 91fc1d74384c50d7e1c69a080a70235cabe70908 (diff) | |
| parent | 91cddd874b4762fbca2c02aa3796f83e77b33320 (diff) | |
Merge pull request #13 from degasus/dlCacheRemove
Remove Display List caching.
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 67b707836c..32d91f4310 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -17,7 +17,6 @@ #include "RenderBase.h" #include "CommandProcessor.h" #include "HW/ProcessorInterface.h" -#include "DLCache.h" #include "State.h" namespace PixelEngine @@ -380,7 +379,6 @@ void SetToken_OnMainThread(u64 userdata, int cyclesLate) UpdateInterrupts(); } CommandProcessor::interruptTokenWaiting = false; - IncrementCheckContextId(); } void SetFinish_OnMainThread(u64 userdata, int cyclesLate) @@ -402,7 +400,6 @@ void SetToken(const u16 _token, const int _bSetTokenAcknowledge) CommandProcessor::interruptTokenWaiting = true; CoreTiming::ScheduleEvent_Threadsafe(0, et_SetTokenOnMainThread, _token | (_bSetTokenAcknowledge << 16)); - IncrementCheckContextId(); } // SetFinish @@ -412,7 +409,6 @@ void SetFinish() CommandProcessor::interruptFinishWaiting = true; CoreTiming::ScheduleEvent_Threadsafe(0, et_SetFinishOnMainThread, 0); INFO_LOG(PIXELENGINE, "VIDEO Set Finish"); - IncrementCheckContextId(); } //This function is used in CommandProcessor when write CTRL_REGISTER and the new fifo is attached. |
