Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IVirtualTexturingEnabledRenderPipeline.cs 454B

12345678910111213
  1. namespace UnityEngine.Rendering
  2. {
  3. /// <summary>
  4. /// By implementing this interface, a render pipeline can indicate to external code it supports virtual texturing.
  5. /// </summary>
  6. public interface IVirtualTexturingEnabledRenderPipeline
  7. {
  8. /// <summary>
  9. /// Indicates if virtual texturing is currently enabled for this render pipeline instance.
  10. /// </summary>
  11. bool virtualTexturingEnabled { get; }
  12. }
  13. }