MCPcopy Create free account
hub / github.com/VirtualGL/virtualgl / PRINTLN

Method PRINTLN

util/Log.cpp:104–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102
103
104void Log::PRINTLN(const char *format, ...)
105{
106 CriticalSection::SafeLock l(mutex);
107 va_list arglist;
108 va_start(arglist, format);
109 vfprintf(logFile, format, arglist);
110 va_end(arglist);
111 fprintf(logFile, "\n");
112 flush();
113}

Callers 4

~ListenerMethod · 0.80
initGLMethod · 0.80
glXMakeCurrentFunction · 0.80
glXMakeContextCurrentFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected