Lines Matching refs:callOut

561     std::ostringstream callOut;  in WriteCppReplayForCall()  local
568 callOut << "gShaderProgramMap[" << id << "] = "; in WriteCppReplayForCall()
574 callOut << "gSyncMap[" << SyncIndexValue(sync) << "] = "; in WriteCppReplayForCall()
601 callOut << "gMappedBufferData["; in WriteCppReplayForCall()
602 WriteParamValueReplay<ParamType::TBufferID>(callOut, call, bufferID); in WriteCppReplayForCall()
603 callOut << "] = "; in WriteCppReplayForCall()
606 callOut << call.name() << "("; in WriteCppReplayForCall()
613 callOut << ", "; in WriteCppReplayForCall()
618 callOut << "gClientArrays[" << param.arrayClientPointerIndex << "]"; in WriteCppReplayForCall()
622 callOut << "reinterpret_cast<" << ParamTypeToString(param.type) << ">(gReadBuffer)"; in WriteCppReplayForCall()
628 OutputGLenumString(callOut, param.enumGroup, param.value.GLenumVal); in WriteCppReplayForCall()
632 OutputGLbitfieldString(callOut, param.enumGroup, param.value.GLbitfieldVal); in WriteCppReplayForCall()
636 WriteGLFloatValue(callOut, param.value.GLfloatVal); in WriteCppReplayForCall()
640 callOut << "gSyncMap[" << SyncIndexValue(param.value.GLsyncVal) << "]"; in WriteCppReplayForCall()
646 callOut << "GL_TIMEOUT_IGNORED"; in WriteCppReplayForCall()
650 WriteParamCaptureReplay(callOut, call, param); in WriteCppReplayForCall()
655 WriteParamCaptureReplay(callOut, call, param); in WriteCppReplayForCall()
663 WriteStringParamReplay(callOut, param); in WriteCppReplayForCall()
666 WriteStringPointerParamReplay(dataTracker, callOut, header, call, param); in WriteCppReplayForCall()
669 WriteResourceIDPointerParamReplay<gl::BufferID>(dataTracker, callOut, out, call, in WriteCppReplayForCall()
673 WriteResourceIDPointerParamReplay<gl::FenceNVID>(dataTracker, callOut, out, in WriteCppReplayForCall()
677 WriteResourceIDPointerParamReplay<gl::FramebufferID>(dataTracker, callOut, out, in WriteCppReplayForCall()
681 WriteResourceIDPointerParamReplay<gl::MemoryObjectID>(dataTracker, callOut, out, in WriteCppReplayForCall()
685 WriteResourceIDPointerParamReplay<gl::ProgramPipelineID>(dataTracker, callOut, in WriteCppReplayForCall()
689 WriteResourceIDPointerParamReplay<gl::QueryID>(dataTracker, callOut, out, call, in WriteCppReplayForCall()
693 WriteResourceIDPointerParamReplay<gl::RenderbufferID>(dataTracker, callOut, out, in WriteCppReplayForCall()
697 WriteResourceIDPointerParamReplay<gl::SamplerID>(dataTracker, callOut, out, in WriteCppReplayForCall()
701 WriteResourceIDPointerParamReplay<gl::SemaphoreID>(dataTracker, callOut, out, in WriteCppReplayForCall()
705 WriteResourceIDPointerParamReplay<gl::TextureID>(dataTracker, callOut, out, in WriteCppReplayForCall()
709 WriteResourceIDPointerParamReplay<gl::TransformFeedbackID>(dataTracker, callOut, in WriteCppReplayForCall()
713 WriteResourceIDPointerParamReplay<gl::VertexArrayID>(dataTracker, callOut, out, in WriteCppReplayForCall()
717 WriteBinaryParamReplay(dataTracker, callOut, header, call, param, binaryData); in WriteCppReplayForCall()
725 callOut << ")"; in WriteCppReplayForCall()
727 out << callOut.str(); in WriteCppReplayForCall()