mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
Add an initial rhi implementation that mimics the opengl implementation
This commit is contained in:
3
third_party/QsLog/QsLogDestConsole.cpp
vendored
3
third_party/QsLog/QsLogDestConsole.cpp
vendored
@ -41,6 +41,9 @@ void QsDebugOutput::output( const QString& message )
|
||||
{
|
||||
WriteConsoleW(GetStdHandle(STD_ERROR_HANDLE), message.utf16(), message.size(), NULL, NULL);
|
||||
WriteConsoleW(GetStdHandle(STD_ERROR_HANDLE), L"\n", 1, NULL, NULL);
|
||||
|
||||
fprintf(stdout, "%s\n", qPrintable(message));
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user