I get a crash in this code, last line there.
void FDeferredShadingSceneRenderer::RenderVelocities(FRHICommandListImmediate& RHICmdList, TRefCountPtr<IPooledRenderTarget>& VelocityRT)
{
check(FeatureLevel >= ERHIFeatureLevel::SM4);
SCOPE_CYCLE_COUNTER(STAT_RenderVelocities);
if (!ShouldRenderVelocities())
{
return;
}
// this is not supported
check(!Views[0].bIsSceneCapture);
Views array length is 1. Very supcious that the comment says // this is not suuported.
Any ideas?
(Back to 4.7.6 again…)