Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

RenderTexture.DiscardContents

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function DiscardContents(): void;
public void DiscardContents();
public function DiscardContents(discardColor: bool, discardDepth: bool): void;
public void DiscardContents(bool discardColor, bool discardDepth);

Parámetros

discardColor Should the colour buffer be discarded?
discardDepth Should the depth buffer be discarded?

Descripción

Discards the contents of the RenderTexture.

On some platforms, it can be good for performance if you indicate when the current contents of a RenderTexture aren't needed any more. This can save copying it from one kind of memory to another when the texture is reused. Xbox 360 and many mobile GPUs benefit from this.

Both the colour buffer and depth buffer are discarded by default but either can be selected individually using the optional boolean parameters.