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 <j.bakker@atmind.nl>2012-07-12 23:19:03 +0400
committerJeroen Bakker <j.bakker@atmind.nl>2012-07-12 23:19:03 +0400
commit8b8bc164dafdfc5fd2f5967ea3cfe07c0193f570 (patch)
tree140a4080c8825d8fb74bbd1c2724b19446f788d5 /source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp
parent2738fa99e73699f3ea202086506fe53aa651e901 (diff)
Small optimizations in compositor.
Most of them are not noticeable.
Diffstat (limited to 'source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp')
-rw-r--r--source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp b/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp
index a6f81410b74..0496974c64f 100644
--- a/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp
+++ b/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.cpp
@@ -35,7 +35,7 @@ void SingleThreadedNodeOperation::initExecution()
void SingleThreadedNodeOperation::executePixel(float *color, int x, int y, MemoryBuffer *inputBuffers[], void *data)
{
- this->m_cachedInstance->read(color, x, y);
+ this->m_cachedInstance->readNoCheck(color, x, y);
}
void SingleThreadedNodeOperation::deinitExecution()