A game about forced loneliness, made by TACStudios
at master 13 lines 454 B view raw
1namespace 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}