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
I get an error while using the RenderGraphEditor UI.
From what I checked, the index at RenderPassUI::renderPinUI is out of bounds of the vector mInputPins or mOutputPins.
The reason is because the index sometimes refers to the mOutputPins but it should be on the mInputPins and vice versa.
To reproduce it,
I am on the version 9fdfdbb i.e. latest version as per 15th July.
I set the RenderGraphEditor as a startup project and run it, then add the SVGFPass and the GBufferRT.
The error occurs when I hover over a pin, but occurs at a random attempt to hover over a pin.
This is when I get the out of bounds error at:
In file : RenderGraphUI.cpp
In function : void RenderPassUI::renderPinUI(const std::string& passName, RenderGraphUI* pGraphUI, uint32_t index, bool input)
Exact line : RenderPassUI::PinUI& pinUI = input ? mInputPins[index] : mOutputPins[index];
The text was updated successfully, but these errors were encountered:
I get an error while using the RenderGraphEditor UI.
From what I checked, the index at RenderPassUI::renderPinUI is out of bounds of the vector mInputPins or mOutputPins.
The reason is because the index sometimes refers to the mOutputPins but it should be on the mInputPins and vice versa.
To reproduce it,
I am on the version 9fdfdbb i.e. latest version as per 15th July.
I set the RenderGraphEditor as a startup project and run it, then add the SVGFPass and the GBufferRT.
The error occurs when I hover over a pin, but occurs at a random attempt to hover over a pin.
This is when I get the out of bounds error at:
In file : RenderGraphUI.cpp
In function : void RenderPassUI::renderPinUI(const std::string& passName, RenderGraphUI* pGraphUI, uint32_t index, bool input)
Exact line : RenderPassUI::PinUI& pinUI = input ? mInputPins[index] : mOutputPins[index];
The text was updated successfully, but these errors were encountered: