- moved the frame rate drawer out of DFrameBuffer.

Too much of this is not shareable and all it consists of are drawing operations on the 2D drawer.
This commit is contained in:
Christoph Oelckers 2020-04-27 23:53:26 +02:00
commit 2196b4fb04
19 changed files with 155 additions and 162 deletions

View file

@ -12,6 +12,7 @@ struct SystemCallbacks
void (*CrashInfo)(char* buffer, size_t bufflen, const char* lfstr);
void (*PlayStartupSound)(const char* name);
bool (*IsSpecialUI)();
bool (*DisableTextureFilter)();
};
extern SystemCallbacks *sysCallbacks;