| 137 | } |
| 138 | |
| 139 | void PrintDebugMessage(LPCSTR msg, ...) |
| 140 | { |
| 141 | auto args = va_list{}; |
| 142 | va_start(args, msg); |
| 143 | g_Renderer.PrintDebugMessage(msg, args); |
| 144 | va_end(args); |
| 145 | } |
| 146 | |
| 147 | void DrawDebugString(const std::string& string, const Vector3& pos, const Vector4& color, RendererDebugPage page) |
| 148 | { |
no test coverage detected