当前位置: 首页>>代码示例>>C++>>正文


C++ ProfileMap::end方法代码示例

本文整理汇总了C++中ProfileMap::end方法的典型用法代码示例。如果您正苦于以下问题:C++ ProfileMap::end方法的具体用法?C++ ProfileMap::end怎么用?C++ ProfileMap::end使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ProfileMap的用法示例。


在下文中一共展示了ProfileMap::end方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: CreateProfileReportsFromProfileMap

//creates a sorted list of profile reports to work with
bool CreateProfileReportsFromProfileMap(ProfileReports& outProfileReports, bool sortReports) {
	outProfileReports.clear();
	for (ProfileMapIterator it = s_profileMap.begin(); it != s_profileMap.end(); ++it) {
		ProfileReport& report = (it->second);
		outProfileReports.push_back(report);
	}

	if (sortReports) {
		QuickSort(outProfileReports, outProfileReports.size(), 0);
	}

	return (!outProfileReports.empty());
}
开发者ID:achen889,项目名称:Warlockery_Engine,代码行数:14,代码来源:Performance.cpp

示例2: createDrawable

static void createDrawable(unsigned long long orig_config, unsigned long long orig_surface)
{
    ProfileMap::iterator it = profile_map.find(orig_config);
    glprofile::Profile profile;

    // If the requested config is associated with a profile, use that
    // profile. Otherwise, assume that the last used profile is what
    // the user wants.
    if (it != profile_map.end()) {
        profile = it->second;
    } else {
        profile = last_profile;
    }

    glws::Drawable *drawable = glretrace::createDrawable(profile);
    drawable_map[orig_surface] = drawable;
}
开发者ID:Dhanasekahar,项目名称:apitrace,代码行数:17,代码来源:glretrace_egl.cpp

示例3: AddProfileToMap

void ProfileSection::AddProfileToMap(const std::string& profileName){
	profileCritSec.Enter();
	ProfileMapIterator profileEntry = s_profileMap.find(profileName);
	//if entry exists, increment existing entry
	if (profileEntry != s_profileMap.end()){
		ProfileReport& existingProfile = (profileEntry->second);

		//assumes elapsed time already set
		existingProfile.m_totalElapsedTime += elapsedTime;
		existingProfile.m_numCalls++;//= numCalls;
		
		existingProfile.SetAverageElapsedTime();
	}
	else{
		//numCalls++;
		//add entry
		s_profileMap.insert(ProfileEntry(profileName, ProfileReport(profileName, totalElapsedTime, numCalls)));
		//Access violation reading location 0xBAADF00D. serious memory corruption here O.o
	}
	profileCritSec.Exit();
}
开发者ID:achen889,项目名称:Warlockery_Engine,代码行数:21,代码来源:Performance.cpp


注:本文中的ProfileMap::end方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。