コード例 #1
0
ファイル: InfoSink.cpp プロジェクト: Aetherdyne/glintercept
void TInfoSinkBase::append(const TPersistString& t) 
{ 
    if (outputStream & EString) {
        checkMem(t.size());  
        sink.append(t); 
    }

#ifdef _WIN32
    if (outputStream & EDebugger)
        OutputDebugString(t.c_str());
#endif

    if (outputStream & EStdOut)
        fprintf(stdout, "%s", t.c_str());
}
コード例 #2
0
ファイル: InfoSink.cpp プロジェクト: CRivlaldo/hlsl2glslfork
void TInfoSinkBase::append(const TPersistString& t) 
{
   checkMem(t.size());  
   sink.append(t); 
}