mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fixed a memory leak that occurred while compiling the OpenCL kernels.
Reset the frame counter after loading a save. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7376 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -147,6 +147,7 @@ void TexDecoder_OpenCL_Initialize()
|
||||
delete binary;
|
||||
}
|
||||
|
||||
// If an error occurred using the kernel binary, recompile the kernels
|
||||
if (err)
|
||||
{
|
||||
std::string code;
|
||||
@ -182,7 +183,7 @@ void TexDecoder_OpenCL_Initialize()
|
||||
binaries = (char **)malloc(sizeof(char *)*nDevices);
|
||||
for (u32 i = 0; i < nDevices; ++i)
|
||||
{
|
||||
if( binary_sizes[i] != 0 )
|
||||
if (binary_sizes[i] != 0)
|
||||
{
|
||||
binaries[i] = (char *)malloc(HEADER_SIZE + binary_sizes[i]);
|
||||
}
|
||||
@ -213,9 +214,23 @@ void TexDecoder_OpenCL_Initialize()
|
||||
output.WriteBytes(binaries[0], binary_sizes[0]);
|
||||
}
|
||||
}
|
||||
for (u32 i = 0; i < nDevices; ++i)
|
||||
{
|
||||
if (binary_sizes[i] != NULL)
|
||||
{
|
||||
free(binaries[i]);
|
||||
}
|
||||
}
|
||||
if (binaries != NULL)
|
||||
free(binaries);
|
||||
if (binary_sizes != NULL)
|
||||
free(binary_sizes);
|
||||
if (devices != NULL)
|
||||
free(devices);
|
||||
}
|
||||
|
||||
for (int i = 0; i <= GX_TF_CMPR; ++i) {
|
||||
for (int i = 0; i <= GX_TF_CMPR; ++i)
|
||||
{
|
||||
if (g_DecodeParametersNative[i].name)
|
||||
g_DecodeParametersNative[i].kernel =
|
||||
OpenCL::CompileKernel(g_program,
|
||||
|
Reference in New Issue
Block a user