Using Single Pass Stereo Rendering and Stereo Instancing
Single Pass Stereo and Stereo Instancing are rendering techniques available for Meta Quest headsets running on Android and PC, respectively.
Single Pass Stereo rendering (also known as Multiview rendering on OpenGL/Vulkan) is a rendering feature for Meta Quest headsets running on Android. It is available with the Unity version 5.6.
In a typical OpenGL stereo rendering, each eye buffer must be rendered in sequence, doubling application and driver overhead. With Single Pass Stereo rendering, objects are rendered once to the left eye buffer, then duplicated to the right buffer automatically with appropriate modifications for vertex position and view-dependent variables such as reflection. It primarily reduces CPU usage, and the GPU performance is unchanged largely. If your application is CPU-bound or draw call bound, we strongly recommend using Single Pass Stereo rendering to improve performance.
Setting Single Pass Stereo Rendering
Depending upon the Unity version that you are using, the navigation for setting Stereo Rendering changes.
- In the menu, go to Edit > Project Settings.
- Expand XR Plugin Management, and then on the Android tab, select Oculus.
- On the left navigation, under XR Plugin Management, select Oculus to open Android settings.
- In the Stereo Rendering Mode list, select Multiview to enable Single Pass Stereo rendering.
Note: Some Unity versions lists Single Pass as Multiview.
Additional technical documentation
For additional technical information about the underlying framework that makes Single Pass Stereo rendering possible in
Meta XR Core SDK for Unity, go to the
Multiview topic.
Stereo Instancing (also known as Single Pass Instanced) is a rendering feature for Meta Quest devices running on PC. It is available with the Unity version 5.6.
In a typical stereo rendering, each eye buffer must be rendered in sequence, doubling application and driver overhead. With Stereo Instancing, objects are rendered once to the left eye buffer, then duplicated to the right buffer automatically with appropriate modifications for vertex position and view-dependent variables such as reflection. It primarily reduces CPU usage, and the GPU performance is unchanged largely. If your application is CPU-bound or draw call bound, we strongly recommend using Single Pass Instanced rendering to improve performance.
Setting Stereo Instancing
- In the menu, go to Edit > Project Settings.
- Expand XR Plugin Management, and then on the Windows tab, select Oculus.
- On the left navigation, under XR Plugin Management, select Oculus to open Windows settings.
- In the Stereo Rendering Mode list, select Single Pass Instanced to enable Single Pass Stereo rendering.