ServiceRenderMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The possible modes for the server side rendering.
public enum class ServiceRenderMode
public enum ServiceRenderMode
type ServiceRenderMode =
Public Enum ServiceRenderMode
- Inheritance
-
ServiceRenderMode
Fields
Name | Value | Description |
---|---|---|
Default | 0 | The recommended render mode. |
DepthBasedComposition | 0 | The multi-GPU result is composed from distinct meshes by merging depth buffers. Suitable for most scene types; balances rendering quality with resource consumption. |
TileBasedComposition | 1 | The multi-GPU result is composed from tiles. This mode has slightly better rendering quality but also higher server resource consumption. Not suitable for very large scenes. |