Enable frameskipping in the null gpu.

In case it's used (I used it to check cpu-only perf on Android.)
This commit is contained in:
Unknown W. Brackets 2013-11-12 23:53:17 -08:00
parent e3bdb3e09b
commit fc3b3449ed

View File

@ -46,6 +46,10 @@ public:
fullInfo = "NULL";
}
virtual bool FramebufferReallyDirty() {
return !(gstate_c.skipDrawReason & SKIPDRAW_SKIPFRAME);
}
protected:
virtual void FastRunLoop(DisplayList &list);
};