You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the RenderInterface does not register static RenderTarget inputs, as Stage::addInput (and thus the signal handler in RenderInterface) is called from the constructor of Slot for static inputs, which means that the Input is not fully constructed yet. Consequently, the dynamic_casts from AbstractSlot to Input<T> (lines 31-34) always fail.
The text was updated successfully, but these errors were encountered:
Currently, the RenderInterface does not register static RenderTarget inputs, as
Stage::addInput
(and thus the signal handler inRenderInterface
) is called from the constructor ofSlot
for static inputs, which means that theInput
is not fully constructed yet. Consequently, thedynamic_cast
s fromAbstractSlot
toInput<T>
(lines 31-34) always fail.The text was updated successfully, but these errors were encountered: