Skip to content

Commit

Permalink
BMD output device fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Feb 20, 2024
1 parent b11e44d commit 7b84314
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions lib/tlDevice/BMDOutputDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -988,14 +988,16 @@ namespace tl
-1.F,
1.F);
p.thread.render->setTransform(pm * vm);

p.thread.render->drawVideo(
p.thread.videoData,
timeline::getBoxes(compareOptions.mode, p.thread.sizes),
imageOptions,
displayOptions,
compareOptions,
backgroundOptions);
if (!p.thread.videoData.empty())
{
p.thread.render->drawVideo(
p.thread.videoData,
timeline::getBoxes(compareOptions.mode, p.thread.sizes),
imageOptions,
displayOptions,
compareOptions,
backgroundOptions);
}
if (p.thread.overlay)
{
p.thread.render->setTransform(pm);
Expand Down

0 comments on commit 7b84314

Please sign in to comment.