We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565455d commit aeda299Copy full SHA for aeda299
src/xrEngine/EngineAPI.cpp
@@ -224,6 +224,12 @@ void CEngineAPI::CreateRendererList()
224
}
225
else
226
{
227
+ // XXX: since we are going to support OpenGL render with its own feature levels,
228
+ // the reference render availability checking trick doesn't quite work: it's based
229
+ // on assumption that first unsupported render quality level means all the rest
230
+ // (greater) levels are not supported too, which is incorrect in case of Linux,
231
+ // where we have OpenGL only (so the engine would crash on R_ASSERT below).
232
+ // ...
233
// try to initialize R2
234
hRender = XRay::LoadLibrary(r2_name);
235
if (hRender)
0 commit comments