Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2021-04-02 16:24:34 +0300
committerJeroen Bakker <jeroen@blender.org>2021-04-02 16:24:34 +0300
commita0f705f18c49d98bdad55eeb8d52ba48c86f4fc9 (patch)
tree3cfbc964fc06165bca0e214be6521f3dd1d02ed3 /source/blender/compositor/operations/COM_ReadBufferOperation.h
parentfa9b05149c2ca3915a4fb2670c87a648d927336c (diff)
Compositor: Debug stream operator.
Stream operators for NodeOperator and ExecutionGroup to help during debugging.
Diffstat (limited to 'source/blender/compositor/operations/COM_ReadBufferOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ReadBufferOperation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_ReadBufferOperation.h b/source/blender/compositor/operations/COM_ReadBufferOperation.h
index 981c09292af..8b96b961a43 100644
--- a/source/blender/compositor/operations/COM_ReadBufferOperation.h
+++ b/source/blender/compositor/operations/COM_ReadBufferOperation.h
@@ -37,10 +37,12 @@ class ReadBufferOperation : public NodeOperation {
{
this->m_memoryProxy = memoryProxy;
}
- MemoryProxy *getMemoryProxy()
+
+ MemoryProxy *getMemoryProxy() const
{
return this->m_memoryProxy;
}
+
void determineResolution(unsigned int resolution[2],
unsigned int preferredResolution[2]) override;