Compositor: Debug stream operator.

Stream operators for NodeOperator and ExecutionGroup to help during
debugging.
This commit is contained in:
2021-04-02 15:24:34 +02:00
parent fa9b05149c
commit a0f705f18c
7 changed files with 137 additions and 6 deletions

View File

@@ -70,7 +70,7 @@ class MemoryProxy {
/**
* \brief get the ExecutionGroup that can be scheduled to calculate a certain chunk.
*/
ExecutionGroup *getExecutor()
ExecutionGroup *getExecutor() const
{
return this->m_executor;
}
@@ -88,7 +88,7 @@ class MemoryProxy {
* \brief get the WriteBufferOperation that is responsible for writing to this MemoryProxy
* \return WriteBufferOperation
*/
WriteBufferOperation *getWriteBufferOperation()
WriteBufferOperation *getWriteBufferOperation() const
{
return this->m_writeBufferOperation;
}