mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
Merge pull request #10100 from Pokechu22/no-wglShareLists
GLInterface: Remove unneeded wglShareLists call
This commit is contained in:
commit
94e9751dfe
@ -396,20 +396,9 @@ HGLRC GLContextWGL::CreateCoreContext(HDC dc, HGLRC share_context)
|
|||||||
0};
|
0};
|
||||||
|
|
||||||
// Attempt creating this context.
|
// Attempt creating this context.
|
||||||
HGLRC core_context = wglCreateContextAttribsARB(dc, nullptr, attribs.data());
|
HGLRC core_context = wglCreateContextAttribsARB(dc, share_context, attribs.data());
|
||||||
if (core_context)
|
if (core_context)
|
||||||
{
|
{
|
||||||
// If we're creating a shared context, share the resources before the context is used.
|
|
||||||
if (share_context)
|
|
||||||
{
|
|
||||||
if (!wglShareLists(share_context, core_context))
|
|
||||||
{
|
|
||||||
ERROR_LOG_FMT(VIDEO, "wglShareLists failed");
|
|
||||||
wglDeleteContext(core_context);
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
INFO_LOG_FMT(VIDEO, "WGL: Created a GL {}.{} core context", version.first, version.second);
|
INFO_LOG_FMT(VIDEO, "WGL: Created a GL {}.{} core context", version.first, version.second);
|
||||||
return core_context;
|
return core_context;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user