info-overview: Remove unused gpu_data_free function

Since we're no longer processing the list of graphics devices inside of get_renderer_from_switcheroo, there's no need for this function
as the the list now gets passed around to a different function and automatically freed once it goes out of scope.
This commit is contained in:
Cyber Phantom 2023-03-26 14:43:58 +05:30 committed by Felipe Borges
parent f4bc3efb0f
commit 2a1e5a5de8

View file

@ -169,13 +169,6 @@ gpu_data_sort (gconstpointer a, gconstpointer b)
return 0;
}
static void
gpu_data_free (GpuData *data)
{
g_free (data->name);
g_free (data);
}
static GSList *
get_renderer_from_switcheroo (void)
{