|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static void RenderPostProcess(CommandBuffer cmd, PostProcessRenderContext context, ref CameraData cameraData, RenderTextureFormat colorFormat, RenderTargetIdentifier source, RenderTargetIdentifier dest, bool opaqueOnly) |
|
|
|
{ |
|
|
|
context.Reset(); |
|
|
|
context.camera = cameraData.camera; |
|
|
|
context.source = source; |
|
|
|
context.sourceFormat = colorFormat; |
|
|
|
context.destination = dest; |
|
|
|
context.command = cmd; |
|
|
|
context.flip = cameraData.camera.targetTexture == null; |
|
|
|
|
|
|
|
if (opaqueOnly) |
|
|
|
cameraData.postProcessLayer.RenderOpaqueOnly(context); |
|
|
|
else |
|
|
|
cameraData.postProcessLayer.Render(context); |
|
|
|
} |
|
|
|
|
|
|
|
void SetSupportedRenderingFeatures() |
|
|
|
{ |
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
|
|
|
|
|
|
cameraData.postProcessLayer = camera.GetComponent<PostProcessLayer>(); |
|
|
|
cameraData.postProcessEnabled = cameraData.postProcessLayer != null && cameraData.postProcessLayer.isActiveAndEnabled; |
|
|
|
|
|
|
|
// PostProcess for VR is not working atm. Disable it for now.
|
|
|
|
cameraData.postProcessEnabled &= !cameraData.isStereoEnabled; |
|
|
|
|
|
|
|
Rect cameraRect = camera.rect; |
|
|
|
cameraData.isDefaultViewport = (!(Math.Abs(cameraRect.x) > 0.0f || Math.Abs(cameraRect.y) > 0.0f || |
|
|
|
|
|
|
float cameraWidth = (float)cameraData.camera.pixelWidth * cameraData.renderScale; |
|
|
|
float cameraHeight = (float)cameraData.camera.pixelWidth * cameraData.renderScale; |
|
|
|
Shader.SetGlobalVector(PerCameraBuffer._ScaledScreenParams, new Vector4(cameraWidth, cameraHeight, 1.0f + 1.0f / cameraWidth, 1.0f + 1.0f / cameraHeight)); |
|
|
|
} |
|
|
|
|
|
|
|
bool IsStereoEnabled(Camera camera) |
|
|
|
{ |
|
|
|
#if !UNITY_SWITCH
|
|
|
|
bool isSceneViewCamera = camera.cameraType == CameraType.SceneView; |
|
|
|
return XRSettings.isDeviceActive && !isSceneViewCamera && (camera.stereoTargetEye == StereoTargetEyeMask.Both); |
|
|
|
#else
|
|
|
|
return false; |
|
|
|
#endif
|
|
|
|
} |
|
|
|
} |
|
|
|
} |