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:
Diffstat (limited to 'source/blender/compositor/operations/COM_SetValueOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_SetValueOperation.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/compositor/operations/COM_SetValueOperation.cpp b/source/blender/compositor/operations/COM_SetValueOperation.cpp
index 0aa1e2bcbef..e49b6941f49 100644
--- a/source/blender/compositor/operations/COM_SetValueOperation.cpp
+++ b/source/blender/compositor/operations/COM_SetValueOperation.cpp
@@ -20,18 +20,20 @@
SetValueOperation::SetValueOperation() : NodeOperation()
{
- this->addOutputSocket(COM_DT_VALUE);
+ this->addOutputSocket(COM_DT_VALUE);
}
void SetValueOperation::executePixelSampled(float output[4],
- float /*x*/, float /*y*/,
+ float /*x*/,
+ float /*y*/,
PixelSampler /*sampler*/)
{
- output[0] = this->m_value;
+ output[0] = this->m_value;
}
-void SetValueOperation::determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2])
+void SetValueOperation::determineResolution(unsigned int resolution[2],
+ unsigned int preferredResolution[2])
{
- resolution[0] = preferredResolution[0];
- resolution[1] = preferredResolution[1];
+ resolution[0] = preferredResolution[0];
+ resolution[1] = preferredResolution[1];
}