AndroidBlitType

enumeration

Switch to Manual

Description

描述如何在屏幕上显示内容的方法。

Options are as follows:

Use Always to render offscreen and blit to the backbuffer. Use Never to render directly to the backbuffer. Use Auto or automatically choose the most appropriate option.

Depending on the device, AndroidBlitType.Never may not support switching MSAA settings at runtime or rendering at non-native resolution. AndroidBlitType.Never does not provide a sRGB backbuffer. Linear rendering requires a framebuffer that does sRGB read/write conversions (see RenderTexture.sRGB), otherwise the generated image typically appears too dark. Therefore AndroidBlitType.Never is not recommended when linear rendering is used. If you want to use linear rendering with AndroidBlitType.Never despite this information, you have to setup your own sRGB render target and handle the blit to the backbuffer.

AndroidBlitType is ignored when the Vulkan Graphics API is used.

Variables

Always始终在屏幕外渲染并对后备缓冲区执行 blit 操作。
NeverNever render offscreen and blit to the backbuffer. Always render directly to the backbuffer.
Auto自动确定最适合绘制到屏幕的方法。