| 328 | void DrawBackground(float l, float r, float b, float t, float drawW, float drawH); |
| 329 | void PrintRedirectCallback(const char* text, int numChars); |
| 330 | void GlfwErrorCallback(int error, const char* description) { tPrintf("Glfw Error %d: %s\n", error, description); } |
| 331 | bool Compare_AlphabeticalAscending (const tSystem::tFileInfo& a, const tSystem::tFileInfo& b) { return tStricmp(a.FileName.Chars(), b.FileName.Chars()) < 0; } |
| 332 | bool Compare_FileCreationTimeAscending (const tSystem::tFileInfo& a, const tSystem::tFileInfo& b) { return a.CreationTime < b.CreationTime; } |
| 333 | bool Compare_ImageLoadTimeAscending (const Image& a, const Image& b) { return a.GetLoadedTime() < b.GetLoadedTime(); } |
nothing calls this directly
no outgoing calls
no test coverage detected