mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-23 06:05:45 +00:00
Add a status entry showing loaded python extensions & debugger status
This commit is contained in:
@@ -453,11 +453,21 @@ rdcarray<ExtensionMetadata> CaptureContext::GetInstalledExtensions()
|
||||
return ret;
|
||||
}
|
||||
|
||||
rdcarray<rdcstr> CaptureContext::GetLoadedExtensions()
|
||||
{
|
||||
return m_ExtensionObjects.keys();
|
||||
}
|
||||
|
||||
bool CaptureContext::IsExtensionLoaded(rdcstr name)
|
||||
{
|
||||
return m_ExtensionObjects.contains(name);
|
||||
}
|
||||
|
||||
bool CaptureContext::IsPythonDebuggerConnected()
|
||||
{
|
||||
return PythonContext::IsDebuggingEnabled() && PythonContext::IsDebuggerConnected();
|
||||
}
|
||||
|
||||
rdcstr CaptureContext::LoadExtension(rdcstr name)
|
||||
{
|
||||
QString ret;
|
||||
|
||||
Reference in New Issue
Block a user