Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
ArneTriangleFactory's avatar
ArneTriangleFactory
Honored Guest
3 years ago

Dual-core mode

Hi, I'm trying to enable Dual-core mode for my VR-application. I'm using Unity 2021.3.28f with Oculus Integration v55. My Quest 2 is also system version 55. I added the snippet bellow to the Manifest as stated in the documentation: https://developer.oculus.com/documentation/unity/po-quest-boost/

        <meta-data
            android:name="com.oculus.dualcorecpuset"
            android:value="true" /> 

However it is not showing CPU level 6 as it should for Dual-core mode. CPU & GPU level 5 do work, so the SDK v55 is correctly installed.

Any other settings that need to be set? Another Unity version required?

1 Reply

Replies have been turned off for this discussion
  • Hi ArneTriangleFactory you probably already found and answer to that but you probably need to set the suggestedCpuPerfLevel

    OVRPlugin.suggestedCpuPerfLevel = OVRPlugin.ProcessorPerformanceLevel.SustainedHigh;
    OVRManager.suggestedCpuPerfLevel = OVRManager.ProcessorPerformanceLevel.SustainedHigh;
    
    // max level
    OVRPlugin.suggestedCpuPerfLevel = OVRPlugin.ProcessorPerformanceLevel.Boost;
    OVRManager.suggestedCpuPerfLevel = OVRManager.ProcessorPerformanceLevel.Boost;