I’ve started to use the android Trace view tool to profile my game. In some of my methods im seeing a large percentage of time taken up in ‘self’.
I have a feeling its something obvious but does anyone know what this represents?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Selfis time spent in the actual method, instead of children. For example, if you have a method that runs a loop doing some math, and then calling some draw functions, you’ll see the time listed for the draw functions inchildren, and the time spent in that method itself(mainly the math loop) asself.