Yury Habets

Results 27 comments of Yury Habets

Comments at line 4477 ``` /* data_key_lo = {(data_key1 & 0xFFFFFFFF), (data_key2 & 0xFFFFFFFF)}; * data_key_hi = {(data_key1 >> 32), (data_key2 >> 32)}; */ uint32x4x2_t zipped = vuzpq_u32(vreinterpretq_u32_u64(data_key1), vreinterpretq_u32_u64(data_key2)); ```...

Thank you @Cyan4973 and @easyaspi314 . > Codegen for scalar multiplies is kinda shady due to clang not realizing that `and+madd` is slower than `umaddl` I'm not an expert in...

> It takes a lot to heat up an ARM core (well, most of them) > Many schedulers avoid higher frequencies unless there is a long term load > The...

Hi! https://stackoverflow.com/questions/22192291/how-to-change-the-status-bar-color-in-android In https://github.com/Over17/UnityShowAndroidStatusBar/blob/master/src/UnityShowAndroidStatusBar/src/main/res/values-v21/styles.xml, under `UnityStatusBarTheme`, add this: `@color/yourcolor` Then rebuild and replace the AAR in the Unity project. Haven't tried it myself but I see no reason why it...

Thanks for reporting - will look into that.

Hi! Which Unity version are you using? Is the package name correct in your command line?

Can you see this line in logcat? https://github.com/Over17/UnitySystracePlugin/blob/master/src/src/SystraceUnity.cpp#L118

Then everything should work. What is the device? Could you share your trace (maybe privately)?

Hi, and thanks for the interest! The plugin _is_ the two files you mentioned. Adding it to your project is as easy as - cloning this repo to your machine...