Bugfix in Recursive loopback of RenderView inside a SessionSource: fixed

loading and import into main session.
This commit is contained in:
brunoherbelin
2021-02-04 23:25:49 +01:00
parent d76dfa4a9d
commit 93b6bc9ca4
10 changed files with 145 additions and 43 deletions

View File

@@ -43,13 +43,16 @@ protected:
class RenderSource : public Source
{
public:
RenderSource(Session *session);
RenderSource();
// implementation of source API
bool failed() const override;
bool failed () const override;
uint texture() const override;
void accept (Visitor& v) override;
inline Session *session () const { return session_; }
inline void setSession (Session *se) { session_ = se; }
glm::ivec2 icon() const override { return glm::ivec2(0, 2); }
protected: