Rename public property to match python-esque naming scheme

This commit is contained in:
baldurk
2018-04-25 21:30:22 +01:00
parent ae454edb03
commit 08147dfa66
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1823,7 +1823,7 @@ void MainWindow::OnCaptureLoaded()
ui->action_Start_Replay_Loop->setEnabled(true);
ui->action_Open_RGP_Profile->setEnabled(
m_Ctx.Replay().GetCaptureAccess()->FindSectionByType(SectionType::AMDRGPProfile) >= 0);
ui->action_Create_RGP_Profile->setEnabled(m_Ctx.APIProps().RGPCapture && m_Ctx.IsCaptureLocal());
ui->action_Create_RGP_Profile->setEnabled(m_Ctx.APIProps().rgpCapture && m_Ctx.IsCaptureLocal());
setCaptureHasErrors(!m_Ctx.DebugMessages().empty());
+1 -1
View File
@@ -1089,7 +1089,7 @@ worked around by re-sorting bindings.
bool shadersMutable = false;
DOCUMENT("``True`` if the driver and system are configured to allow creating RGP captures.");
bool RGPCapture = false;
bool rgpCapture = false;
#if !defined(SWIG)
// flags about edge-case parts of the APIs that might be used in the capture.
+1 -1
View File
@@ -188,7 +188,7 @@ APIProperties D3D12Replay::GetAPIProperties()
ret.vendor = m_Vendor;
ret.degraded = false;
ret.shadersMutable = false;
ret.RGPCapture = m_RGP != NULL && m_RGP->DriverSupportsInterop();
ret.rgpCapture = m_RGP != NULL && m_RGP->DriverSupportsInterop();
return ret;
}
+1 -1
View File
@@ -80,7 +80,7 @@ APIProperties VulkanReplay::GetAPIProperties()
ret.localRenderer = GraphicsAPI::Vulkan;
ret.degraded = false;
ret.shadersMutable = false;
ret.RGPCapture = m_RGP != NULL && m_RGP->DriverSupportsInterop();
ret.rgpCapture = m_RGP != NULL && m_RGP->DriverSupportsInterop();
return ret;
}