Hello,
Running this inside VideoPostData::Execute(BaseVideoPost *node, VideoPostStruct *vps)
used to return the final rendered image. With R23, it does only on preview renders. On Picture View renders the buffer is clearly not finished.
if (vps->vp==VIDEOPOSTCALL::FRAME && ! vps->open)
{
// TODO: R23 is delivering not the final image
VPBuffer * buf = vps->render->GetBuffer(VPBUFFER_RGBA,0);
}
Only if I disable MultiPass in the Render Settings, it returns the final image.
Is there any other VPBUFFER
I could try?
Maybe my VideoPost need to be run later, after all the other effects, but I can't find how to set a VP priority.