| 30 | } |
| 31 | |
| 32 | void PrintError(const char format[], ...) { |
| 33 | va_list args; |
| 34 | va_start(args, format); |
| 35 | __android_log_vprint(ANDROID_LOG_ERROR, LOG_TAG, format, args); |
| 36 | va_end(args); |
| 37 | } |
| 38 | } // namespace tgfx |
nothing calls this directly
no outgoing calls
no test coverage detected