Implementation of source frame buffer; rendering of source and scene

integration
This commit is contained in:
brunoherbelin
2020-04-25 11:52:47 +02:00
parent 9b3eba8d1e
commit 0e24d1a083
19 changed files with 283 additions and 109 deletions

View File

@@ -96,10 +96,10 @@ void ImGuiVisitor::visit(FrameBufferSurface &n)
void ImGuiVisitor::visit(MediaSurface &n)
{
ImGui::Text("%s", n.getUri().c_str());
ImGui::Text("%s", n.uri().c_str());
if (n.getMediaPlayer())
n.getMediaPlayer()->accept(*this);
if (n.mediaPlayer())
n.mediaPlayer()->accept(*this);
}
void ImGuiVisitor::visit(MediaPlayer &n)