Version: 5.5

StereoRenderingPath

enumeration

マニュアルに切り替える

説明

Enum used to specify what stereo rendering path to use.

変数

MultiPassThe scene graph is traversed twice, rendering one eye at a time. This is the slowest path and should only be used for reference.
SinglePassThe scene graph is traversed only once and two draw calls will be issued for each render node. The main render target has to be a double wide render target. This is considerable faster than MultiPass mode.
InstancingThe scene graph is traversed only once and there will be only one draw call issued for each render node. The main render target has to be an array render target. This is an optimization of the StereoRenderingPath.SinglePass mode. Special hardware support is required for this to run.