Compare commits

..
4 Commits
3 changed files with 1031 additions and 1027 deletions
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -205,7 +205,7 @@ bool CubebAudioStream::Initialize(const char* driver_name, const char* device_na
}
cubeb_devid selected_device = nullptr;
cubeb_device_collection devices;
cubeb_device_collection devices = {};
bool devices_valid = false;
if (device_name && *device_name)
{
@@ -350,7 +350,7 @@ std::vector<AudioStream::DeviceInfo> AudioStream::GetCubebOutputDevices(const ch
ScopedGuard context_cleanup([context]() { cubeb_destroy(context); });
cubeb_device_collection devices;
cubeb_device_collection devices = {};
rv = cubeb_enumerate_devices(context, CUBEB_DEVICE_TYPE_OUTPUT, &devices);
if (rv != CUBEB_OK)
{
+10 -6
View File
@@ -441,12 +441,16 @@ __ri void ImGuiManager::DrawPerformanceOverlay(float& position_y, float scale, f
// GPU
const char* gpu_suffix = "";
if (GSConfig.UseDebugDevice && GSConfig.HWROV)
gpu_suffix = " (Debug & ROV)";
else if (GSConfig.UseDebugDevice)
gpu_suffix = " (Debug)";
else if (GSConfig.HWROV)
gpu_suffix = " (ROV)";
if (GSConfig.Renderer != GSRendererType::SW)
{
if (GSConfig.UseDebugDevice && GSConfig.HWROV)
gpu_suffix = " (Debug & ROV)";
else if (GSConfig.UseDebugDevice)
gpu_suffix = " (Debug)";
else if (GSConfig.HWROV)
gpu_suffix = " (ROV)";
}
s_hardware_info_gpu_line.format(
"GPU: {}{}",