mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-31 07:22:37 +00:00
Added a safer OpenCL shutdown procedure.
Fixes issue 3015. Fixes issue 3089. Fixes issue 3099. Fixes issue 3360. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6307 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2ec3db44ed
commit
56e79aa87d
2 changed files with 12 additions and 9 deletions
|
@ -188,13 +188,16 @@ cl_kernel CompileKernel(cl_program program, const char *Function)
|
|||
void Destroy()
|
||||
{
|
||||
#if defined(HAVE_OPENCL) && HAVE_OPENCL
|
||||
if(!g_context)
|
||||
return;
|
||||
clReleaseCommandQueue(g_cmdq);
|
||||
clReleaseContext(g_context);
|
||||
g_context = NULL;
|
||||
g_cmdq = NULL;
|
||||
|
||||
if (g_cmdq)
|
||||
{
|
||||
clReleaseCommandQueue(g_cmdq);
|
||||
g_cmdq = NULL;
|
||||
}
|
||||
if (g_context)
|
||||
{
|
||||
clReleaseContext(g_context);
|
||||
g_context = NULL;
|
||||
}
|
||||
g_bInitialized = false;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue