When baking in a debug build running gdb it kept asserting because a GL context was being created outside the main thread.
To fix this the patch only creates the GL context is only created for rendering (when it is actually used).
Differential D12767
Fix: Stops assert when baking in debug mode. Authored by William Leeson (leesonw) on Oct 6 2021, 4:38 PM. Tags Subscribers None
Details When baking in a debug build running gdb it kept asserting because a GL context was being created outside the main thread. To fix this the patch only creates the GL context is only created for rendering (when it is actually used).
Diff Detail
Event TimelineComment Actions This breaks F12 render which is also background but which does need DisplayDriver to be created. Since we only expect the DisplayDriver to be used for rendering, perhaps easiest is to only create display for render: P2485 |