MCPcopy Create free account
hub / github.com/baldurk/renderdoc / ProcessDecRefQueue

Function ProcessDecRefQueue

qrenderdoc/Code/pyrenderdoc/PythonContext.cpp:1532–1543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1530}
1531
1532extern "C" void ProcessDecRefQueue()
1533{
1534 QMutexLocker lock(&decrefQueueMutex);
1535
1536 if(decrefQueue.isEmpty())
1537 return;
1538
1539 for(PyObject *obj : decrefQueue)
1540 Py_XDECREF(obj);
1541
1542 decrefQueue.clear();
1543}
1544
1545extern "C" QWidget *QWidgetFromPy(PyObject *widget)
1546{

Callers 3

callMethod · 0.70
ConvertFuncFunction · 0.70
executeStringMethod · 0.70

Calls 2

isEmptyMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected