hi guys
i cant seem to find anything explaining what Unknown means, so i might just try asking here.
this report was made from a unity game running on a G51 devices
can i viewed that as the portion of the hardware resouces that are not being utilized at all?
if that is the case, should i be worry about it? and is there anything i can do to make this unknown part lower?
Step one: Check how well the CPU/GPU queues are being scheduled. If you are below your frame rate target you ideally want the dominant queue on CPU or GPU running all of the time. If that isn't happening you may have some behavior causing serialization which can reduce performance.Step two: Optimize the dominant part. E.g. if you are "mostly" fragment limited then use the other counters in Streamline to investigate the fragment workload (how well is early ZS working, how much over draw do you have, etc). The Mali Performance Counter guide for your GPU (https://developer.arm.com/documentation#q=Mali%20Performance%20Counters) should give more specific advice.