Lines Matching refs:contextId
129 std::ostream &operator<<(std::ostream &os, gl::ContextID contextId) in operator <<() argument
131 os << static_cast<int>(contextId.value); in operator <<()
140 : contextId(contextIdIn), captureLabel(captureLabelIn) in FmtCapturePrefix()
142 gl::ContextID contextId; member
157 if (fmt.contextId != kSharedContextId) in operator <<()
159 os << "_capture_context" << fmt.contextId; in operator <<()
179 : contextId(contextIdIn), frameIndex(frameIndexIn), partId(partIdIn) in FmtReplayFunction()
181 gl::ContextID contextId; member
190 if (fmt.contextId == kSharedContextId) in operator <<()
196 os << fmt.contextId; in operator <<()
212 : partId(partIdIn), contextId(contextIdIn) in FmtSetupFunction()
216 gl::ContextID contextId; member
223 if (fmt.contextId == kSharedContextId) in operator <<()
229 os << fmt.contextId; in operator <<()
257 : funcType(funcTypeIn), contextId(contextIdIn), frameIndex(frameIndexIn), partId(partIdIn) in FmtFunction()
261 gl::ContextID contextId; member
271 os << FmtReplayFunction(fmt.contextId, fmt.frameIndex, fmt.partId); in operator <<()
275 os << FmtSetupFunction(fmt.partId, fmt.contextId); in operator <<()
293 : contextId(contextIdIn), frameIndex(frameIndexIn) in FmtGetSerializedContextStateFunction()
295 gl::ContextID contextId; member
301 os << "GetSerializedContext" << fmt.contextId << "StateFrame" << fmt.frameIndex << "Data()"; in operator <<()
305 std::string GetCaptureFileName(gl::ContextID contextId, in GetCaptureFileName() argument
311 fnameStream << FmtCapturePrefix(contextId, captureLabel) << "_frame" << std::setfill('0') in GetCaptureFileName()
317 gl::ContextID contextId, in GetCaptureFilePath() argument
322 return outDir + GetCaptureFileName(contextId, captureLabel, frameIndex, suffix); in GetCaptureFilePath()
781 gl::ContextID contextId, in GetBinaryDataFilePath() argument
785 fnameStream << FmtCapturePrefix(contextId, captureLabel) << ".angledata"; in GetBinaryDataFilePath()
795 gl::ContextID contextId, in SaveBinaryData() argument
799 std::string binaryDataFileName = GetBinaryDataFilePath(compression, contextId, captureLabel); in SaveBinaryData()
832 gl::ContextID contextId, in WriteInitReplayCall() argument
837 std::string binaryDataFileName = GetBinaryDataFilePath(compression, contextId, captureLabel); in WriteInitReplayCall()
5363 const gl::ContextID contextId = context->id(); in writeCppReplayIndexFiles() local
5403 << mDrawSurfaceDimensions.at(contextId).width << ";\n"; in writeCppReplayIndexFiles()
5405 << mDrawSurfaceDimensions.at(contextId).height << ";\n"; in writeCppReplayIndexFiles()
5433 header << "void " << FmtReplayFunction(contextId, frameIndex) << ";\n"; in writeCppReplayIndexFiles()
5440 header << "const char *" << FmtGetSerializedContextStateFunction(contextId, frameIndex) in writeCppReplayIndexFiles()
5448 source << "#include \"" << FmtCapturePrefix(contextId, mCaptureLabel) << ".h\"\n"; in writeCppReplayIndexFiles()
5473 source << " " << FmtReplayFunction(contextId, frameIndex) << ";\n"; in writeCppReplayIndexFiles()
5502 << FmtGetSerializedContextStateFunction(contextId, frameIndex) << ";\n"; in writeCppReplayIndexFiles()
5522 headerPathStream << mOutDirectory << FmtCapturePrefix(contextId, mCaptureLabel) << ".h"; in writeCppReplayIndexFiles()
5533 sourcePathStream << mOutDirectory << FmtCapturePrefix(contextId, mCaptureLabel) << ".cpp"; in writeCppReplayIndexFiles()
5542 indexPathStream << mOutDirectory << FmtCapturePrefix(contextId, mCaptureLabel) in writeCppReplayIndexFiles()
5549 saveIndex << GetCaptureFileName(contextId, mCaptureLabel, frameIndex, ".cpp") << "\n"; in writeCppReplayIndexFiles()
5556 if (shareContext->id() == contextId) in writeCppReplayIndexFiles()