码迷,mamicode.com
首页 > 其他好文 > 详细

关于游戏开发中时间性能统计工具本身overhead较高的问题

时间:2020-02-14 16:09:23      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:col   logic   log   span   函数   content   不可   count   badge   

使用类似 profiler.begin/end统计函数的时间消耗,不管profiler.begin/end本身的消耗有多大,函数的self时间总是准确的,只是总时间不准确了
对函数进行递归计算所有self time,就是函数消耗的准确总时间
 
前提:Profiler.BeginSample一定要放在函数第一行,Profiler.EndSample一定要放在函数最后一行,不可以这样:
 
void main(){
  beginsample()
  
int x = 10;   .....   .....   .....   beginsample() //错误,应放到mylogic函数中,因为放在这里会导致"beginsample()"的消耗也计入了main()的self消耗   mylogic()   endsample() //错误,应放到mylogic函数中,因为放在这里会导致"endsample()"的消耗也计入了main()的self消耗
  endsample() 
}

 

关于游戏开发中时间性能统计工具本身overhead较高的问题

标签:col   logic   log   span   函数   content   不可   count   badge   

原文地址:https://www.cnblogs.com/timeObjserver/p/12307632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!