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-03-19 16:56:07 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-19 19:11:47 +0300
commitc905dd24b694eee0aa29fc95abd50cec62930c23 (patch)
tree1f3c44fa6cf76ccaab9bc4f5cd27dad32776bf97 /source/blender/compositor/intern/COM_MemoryProxy.cc
parentb9447ab053ffe660b7eb1ef8f60bf436a1cec600 (diff)
Cleanup: Replace ptr with ref (COM_MemoryBuffer).
Diffstat (limited to 'source/blender/compositor/intern/COM_MemoryProxy.cc')
-rw-r--r--source/blender/compositor/intern/COM_MemoryProxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/intern/COM_MemoryProxy.cc b/source/blender/compositor/intern/COM_MemoryProxy.cc
index 7d590cd0ef6..3cd56e9998e 100644
--- a/source/blender/compositor/intern/COM_MemoryProxy.cc
+++ b/source/blender/compositor/intern/COM_MemoryProxy.cc
@@ -33,7 +33,7 @@ void MemoryProxy::allocate(unsigned int width, unsigned int height)
result.ymin = 0;
result.ymax = height;
- this->m_buffer = new MemoryBuffer(this, 1, &result);
+ this->m_buffer = new MemoryBuffer(this, 1, result);
}
void MemoryProxy::free()