UniversalRenderPipelineCore.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. using System;
  2. using System.Collections.Generic;
  3. using Unity.Collections;
  4. using UnityEngine.Scripting.APIUpdating;
  5. using UnityEngine.Experimental.GlobalIllumination;
  6. using Lightmapping = UnityEngine.Experimental.GlobalIllumination.Lightmapping;
  7. namespace UnityEngine.Rendering.Universal
  8. {
  9. [MovedFrom("UnityEngine.Rendering.LWRP")] public enum MixedLightingSetup
  10. {
  11. None,
  12. ShadowMask,
  13. Subtractive,
  14. };
  15. [MovedFrom("UnityEngine.Rendering.LWRP")] public struct RenderingData
  16. {
  17. public CullingResults cullResults;
  18. public CameraData cameraData;
  19. public LightData lightData;
  20. public ShadowData shadowData;
  21. public PostProcessingData postProcessingData;
  22. public bool supportsDynamicBatching;
  23. public PerObjectData perObjectData;
  24. [Obsolete("killAlphaInFinalBlit is deprecated in the Universal Render Pipeline since it is no longer needed on any supported platform.")]
  25. public bool killAlphaInFinalBlit;
  26. /// <summary>
  27. /// True if post-processing effect is enabled while rendering the camera stack.
  28. /// </summary>
  29. public bool postProcessingEnabled;
  30. internal bool resolveFinalTarget;
  31. }
  32. [MovedFrom("UnityEngine.Rendering.LWRP")] public struct LightData
  33. {
  34. public int mainLightIndex;
  35. public int additionalLightsCount;
  36. public int maxPerObjectAdditionalLightsCount;
  37. public NativeArray<VisibleLight> visibleLights;
  38. public bool shadeAdditionalLightsPerVertex;
  39. public bool supportsMixedLighting;
  40. }
  41. [MovedFrom("UnityEngine.Rendering.LWRP")] public struct CameraData
  42. {
  43. public Camera camera;
  44. public CameraRenderType renderType;
  45. public RenderTexture targetTexture;
  46. public RenderTextureDescriptor cameraTargetDescriptor;
  47. // Internal camera data as we are not yet sure how to expose View in stereo context.
  48. // We might change this API soon.
  49. internal Matrix4x4 viewMatrix;
  50. internal Matrix4x4 projectionMatrix;
  51. internal Rect pixelRect;
  52. internal int pixelWidth;
  53. internal int pixelHeight;
  54. internal float aspectRatio;
  55. public float renderScale;
  56. public bool clearDepth;
  57. public bool isSceneViewCamera;
  58. public bool isDefaultViewport;
  59. public bool isHdrEnabled;
  60. public bool requiresDepthTexture;
  61. public bool requiresOpaqueTexture;
  62. public SortingCriteria defaultOpaqueSortFlags;
  63. public bool isStereoEnabled;
  64. internal int numberOfXRPasses;
  65. internal bool isXRMultipass;
  66. public float maxShadowDistance;
  67. public bool postProcessEnabled;
  68. #if POST_PROCESSING_STACK_2_0_0_OR_NEWER
  69. [Obsolete("The use of the Post-processing Stack V2 is deprecated in the Universal Render Pipeline. Use the builtin post-processing effects instead.")]
  70. public UnityEngine.Rendering.PostProcessing.PostProcessLayer postProcessLayer;
  71. #endif
  72. public IEnumerator<Action<RenderTargetIdentifier, CommandBuffer>> captureActions;
  73. public LayerMask volumeLayerMask;
  74. public Transform volumeTrigger;
  75. public bool isStopNaNEnabled;
  76. public bool isDitheringEnabled;
  77. public AntialiasingMode antialiasing;
  78. public AntialiasingQuality antialiasingQuality;
  79. internal ScriptableRenderer renderer;
  80. }
  81. [MovedFrom("UnityEngine.Rendering.LWRP")] public struct ShadowData
  82. {
  83. public bool supportsMainLightShadows;
  84. public bool requiresScreenSpaceShadowResolve;
  85. public int mainLightShadowmapWidth;
  86. public int mainLightShadowmapHeight;
  87. public int mainLightShadowCascadesCount;
  88. public Vector3 mainLightShadowCascadesSplit;
  89. public bool supportsAdditionalLightShadows;
  90. public int additionalLightsShadowmapWidth;
  91. public int additionalLightsShadowmapHeight;
  92. public bool supportsSoftShadows;
  93. public int shadowmapDepthBufferBits;
  94. public List<Vector4> bias;
  95. }
  96. public struct PostProcessingData
  97. {
  98. public ColorGradingMode gradingMode;
  99. public int lutSize;
  100. }
  101. class CameraDataComparer : IComparer<Camera>
  102. {
  103. public int Compare(Camera lhs, Camera rhs)
  104. {
  105. return (int)lhs.depth - (int)rhs.depth;
  106. }
  107. }
  108. public static class ShaderKeywordStrings
  109. {
  110. public static readonly string MainLightShadows = "_MAIN_LIGHT_SHADOWS";
  111. public static readonly string MainLightShadowCascades = "_MAIN_LIGHT_SHADOWS_CASCADE";
  112. public static readonly string AdditionalLightsVertex = "_ADDITIONAL_LIGHTS_VERTEX";
  113. public static readonly string AdditionalLightsPixel = "_ADDITIONAL_LIGHTS";
  114. public static readonly string AdditionalLightShadows = "_ADDITIONAL_LIGHT_SHADOWS";
  115. public static readonly string SoftShadows = "_SHADOWS_SOFT";
  116. public static readonly string MixedLightingSubtractive = "_MIXED_LIGHTING_SUBTRACTIVE";
  117. public static readonly string DepthNoMsaa = "_DEPTH_NO_MSAA";
  118. public static readonly string DepthMsaa2 = "_DEPTH_MSAA_2";
  119. public static readonly string DepthMsaa4 = "_DEPTH_MSAA_4";
  120. public static readonly string LinearToSRGBConversion = "_LINEAR_TO_SRGB_CONVERSION";
  121. [Obsolete("The _KILL_ALPHA shader keyword is deprecated in the Universal Render Pipeline.")]
  122. public static readonly string KillAlpha = "_KILL_ALPHA";
  123. public static readonly string SmaaLow = "_SMAA_PRESET_LOW";
  124. public static readonly string SmaaMedium = "_SMAA_PRESET_MEDIUM";
  125. public static readonly string SmaaHigh = "_SMAA_PRESET_HIGH";
  126. public static readonly string PaniniGeneric = "_GENERIC";
  127. public static readonly string PaniniUnitDistance = "_UNIT_DISTANCE";
  128. public static readonly string BloomLQ = "_BLOOM_LQ";
  129. public static readonly string BloomHQ = "_BLOOM_HQ";
  130. public static readonly string BloomLQDirt = "_BLOOM_LQ_DIRT";
  131. public static readonly string BloomHQDirt = "_BLOOM_HQ_DIRT";
  132. public static readonly string UseRGBM = "_USE_RGBM";
  133. public static readonly string Distortion = "_DISTORTION";
  134. public static readonly string ChromaticAberration = "_CHROMATIC_ABERRATION";
  135. public static readonly string HDRGrading = "_HDR_GRADING";
  136. public static readonly string TonemapACES = "_TONEMAP_ACES";
  137. public static readonly string TonemapNeutral = "_TONEMAP_NEUTRAL";
  138. public static readonly string FilmGrain = "_FILM_GRAIN";
  139. public static readonly string Fxaa = "_FXAA";
  140. public static readonly string Dithering = "_DITHERING";
  141. public static readonly string HighQualitySampling = "_HIGH_QUALITY_SAMPLING";
  142. }
  143. public sealed partial class UniversalRenderPipeline
  144. {
  145. static List<Vector4> m_ShadowBiasData = new List<Vector4>();
  146. /// <summary>
  147. /// Checks if a camera is a game camera.
  148. /// </summary>
  149. /// <param name="camera">Camera to check state from.</param>
  150. /// <returns>true if given camera is a game camera, false otherwise.</returns>
  151. public static bool IsGameCamera(Camera camera)
  152. {
  153. if (camera == null)
  154. throw new ArgumentNullException("camera");
  155. return camera.cameraType == CameraType.Game || camera.cameraType == CameraType.VR;
  156. }
  157. /// <summary>
  158. /// Checks if a camera is rendering in stereo mode.
  159. /// </summary>
  160. /// <param name="camera">Camera to check state from.</param>
  161. /// <returns>Returns true if the given camera is rendering in stereo mode, false otherwise.</returns>
  162. public static bool IsStereoEnabled(Camera camera)
  163. {
  164. if (camera == null)
  165. throw new ArgumentNullException("camera");
  166. bool isGameCamera = IsGameCamera(camera);
  167. bool isCompatWithXRDimension = true;
  168. #if ENABLE_VR && ENABLE_VR_MODULE
  169. isCompatWithXRDimension &= (camera.targetTexture ? camera.targetTexture.dimension == UnityEngine.XR.XRSettings.deviceEyeTextureDimension : true);
  170. #endif
  171. return XRGraphics.enabled && isGameCamera && (camera.stereoTargetEye == StereoTargetEyeMask.Both) && isCompatWithXRDimension;
  172. }
  173. /// <summary>
  174. /// Returns the current render pipeline asset for the current quality setting.
  175. /// If no render pipeline asset is assigned in QualitySettings, then returns the one assigned in GraphicsSettings.
  176. /// </summary>
  177. public static UniversalRenderPipelineAsset asset
  178. {
  179. get => GraphicsSettings.currentRenderPipeline as UniversalRenderPipelineAsset;
  180. }
  181. /// <summary>
  182. /// Checks if a camera is rendering in MultiPass stereo mode.
  183. /// </summary>
  184. /// <param name="camera">Camera to check state from.</param>
  185. /// <returns>Returns true if the given camera is rendering in multi pass stereo mode, false otherwise.</returns>
  186. static bool IsMultiPassStereoEnabled(Camera camera)
  187. {
  188. if (camera == null)
  189. throw new ArgumentNullException("camera");
  190. #if ENABLE_VR && ENABLE_VR_MODULE
  191. return IsStereoEnabled(camera) && !CanXRSDKUseSinglePass(camera) && XR.XRSettings.stereoRenderingMode == XR.XRSettings.StereoRenderingMode.MultiPass;
  192. #else
  193. return false;
  194. #endif
  195. }
  196. #if ENABLE_VR && ENABLE_VR_MODULE
  197. static XR.XRDisplaySubsystem GetXRDisplaySubsystem()
  198. {
  199. XR.XRDisplaySubsystem display = null;
  200. SubsystemManager.GetInstances(displaySubsystemList);
  201. if (displaySubsystemList.Count > 0)
  202. display = displaySubsystemList[0];
  203. return display;
  204. }
  205. // NB: This method is required for a hotfix in Hololens to prevent creating a render texture when using a renderer
  206. // with custom render pass.
  207. // TODO: Remove this method and usages when we have proper dependency tracking in the pipeline to know
  208. // when a render pass requires camera color as input.
  209. internal static bool IsRunningHololens(Camera camera)
  210. {
  211. #if PLATFORM_WINRT
  212. if (IsStereoEnabled(camera))
  213. {
  214. var platform = Application.platform;
  215. if (platform == RuntimePlatform.WSAPlayerX86 || platform == RuntimePlatform.WSAPlayerARM)
  216. {
  217. var displaySubsystem = GetXRDisplaySubsystem();
  218. var subsystemDescriptor = displaySubsystem?.SubsystemDescriptor ?? null;
  219. string id = subsystemDescriptor?.id ?? "";
  220. if (id.Contains("Windows Mixed Reality Display"))
  221. return true;
  222. if (!XR.WSA.HolographicSettings.IsDisplayOpaque)
  223. return true;
  224. }
  225. }
  226. #endif
  227. return false;
  228. }
  229. #endif
  230. void SortCameras(Camera[] cameras)
  231. {
  232. if (cameras.Length <= 1)
  233. return;
  234. Array.Sort(cameras, new CameraDataComparer());
  235. }
  236. static RenderTextureDescriptor CreateRenderTextureDescriptor(Camera camera, float renderScale,
  237. bool isStereoEnabled, bool isHdrEnabled, int msaaSamples, bool needsAlpha)
  238. {
  239. RenderTextureDescriptor desc;
  240. RenderTextureFormat renderTextureFormatDefault = RenderTextureFormat.Default;
  241. // NB: There's a weird case about XR and render texture
  242. // In test framework currently we render stereo tests to target texture
  243. // The descriptor in that case needs to be initialized from XR eyeTexture not render texture
  244. // Otherwise current tests will fail. Check: Do we need to update the test images instead?
  245. if (isStereoEnabled)
  246. {
  247. desc = XRGraphics.eyeTextureDesc;
  248. renderTextureFormatDefault = desc.colorFormat;
  249. }
  250. else if (camera.targetTexture == null)
  251. {
  252. desc = new RenderTextureDescriptor(camera.pixelWidth, camera.pixelHeight);
  253. desc.width = (int)((float)desc.width * renderScale);
  254. desc.height = (int)((float)desc.height * renderScale);
  255. }
  256. else
  257. {
  258. desc = camera.targetTexture.descriptor;
  259. }
  260. if (camera.targetTexture != null)
  261. {
  262. desc.colorFormat = camera.targetTexture.descriptor.colorFormat;
  263. desc.depthBufferBits = camera.targetTexture.descriptor.depthBufferBits;
  264. desc.msaaSamples = camera.targetTexture.descriptor.msaaSamples;
  265. desc.sRGB = camera.targetTexture.descriptor.sRGB;
  266. }
  267. else
  268. {
  269. bool use32BitHDR = !needsAlpha && RenderingUtils.SupportsRenderTextureFormat(RenderTextureFormat.RGB111110Float);
  270. RenderTextureFormat hdrFormat = (use32BitHDR) ? RenderTextureFormat.RGB111110Float : RenderTextureFormat.DefaultHDR;
  271. desc.colorFormat = isHdrEnabled ? hdrFormat : renderTextureFormatDefault;
  272. desc.depthBufferBits = 32;
  273. desc.msaaSamples = msaaSamples;
  274. desc.sRGB = (QualitySettings.activeColorSpace == ColorSpace.Linear);
  275. }
  276. desc.enableRandomWrite = false;
  277. desc.bindMS = false;
  278. desc.useDynamicScale = camera.allowDynamicResolution;
  279. return desc;
  280. }
  281. static Lightmapping.RequestLightsDelegate lightsDelegate = (Light[] requests, NativeArray<LightDataGI> lightsOutput) =>
  282. {
  283. // Editor only.
  284. #if UNITY_EDITOR
  285. LightDataGI lightData = new LightDataGI();
  286. for (int i = 0; i < requests.Length; i++)
  287. {
  288. Light light = requests[i];
  289. switch (light.type)
  290. {
  291. case LightType.Directional:
  292. DirectionalLight directionalLight = new DirectionalLight();
  293. LightmapperUtils.Extract(light, ref directionalLight);
  294. lightData.Init(ref directionalLight);
  295. break;
  296. case LightType.Point:
  297. PointLight pointLight = new PointLight();
  298. LightmapperUtils.Extract(light, ref pointLight);
  299. lightData.Init(ref pointLight);
  300. break;
  301. case LightType.Spot:
  302. SpotLight spotLight = new SpotLight();
  303. LightmapperUtils.Extract(light, ref spotLight);
  304. spotLight.innerConeAngle = light.innerSpotAngle * Mathf.Deg2Rad;
  305. spotLight.angularFalloff = AngularFalloffType.AnalyticAndInnerAngle;
  306. lightData.Init(ref spotLight);
  307. break;
  308. case LightType.Area:
  309. RectangleLight rectangleLight = new RectangleLight();
  310. LightmapperUtils.Extract(light, ref rectangleLight);
  311. rectangleLight.mode = LightMode.Baked;
  312. lightData.Init(ref rectangleLight);
  313. break;
  314. case LightType.Disc:
  315. DiscLight discLight = new DiscLight();
  316. LightmapperUtils.Extract(light, ref discLight);
  317. discLight.mode = LightMode.Baked;
  318. lightData.Init(ref discLight);
  319. break;
  320. default:
  321. lightData.InitNoBake(light.GetInstanceID());
  322. break;
  323. }
  324. lightData.falloff = FalloffType.InverseSquared;
  325. lightsOutput[i] = lightData;
  326. }
  327. #else
  328. LightDataGI lightData = new LightDataGI();
  329. for (int i = 0; i < requests.Length; i++)
  330. {
  331. Light light = requests[i];
  332. lightData.InitNoBake(light.GetInstanceID());
  333. lightsOutput[i] = lightData;
  334. }
  335. Debug.LogWarning("Realtime GI is not supported in Universal Pipeline.");
  336. #endif
  337. };
  338. }
  339. internal enum URPProfileId
  340. {
  341. StopNaNs,
  342. SMAA,
  343. GaussianDepthOfField,
  344. BokehDepthOfField,
  345. MotionBlur,
  346. PaniniProjection,
  347. UberPostProcess,
  348. Bloom,
  349. }
  350. }