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_SetSamplerOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetSamplerOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_SetSamplerOperation.h b/source/blender/compositor/operations/COM_SetSamplerOperation.h
index 87b232cbfa7..27ef6603ae4 100644
--- a/source/blender/compositor/operations/COM_SetSamplerOperation.h
+++ b/source/blender/compositor/operations/COM_SetSamplerOperation.h
@@ -37,7 +37,7 @@ class SetSamplerOperation : public NodeOperation {
*/
SetSamplerOperation();
- void setSampler(PixelSampler sampler)
+ void set_sampler(PixelSampler sampler)
{
sampler_ = sampler;
}
@@ -45,9 +45,9 @@ class SetSamplerOperation : public NodeOperation {
/**
* The inner loop of this operation.
*/
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override;
- void initExecution() override;
- void deinitExecution() override;
+ void execute_pixel_sampled(float output[4], float x, float y, PixelSampler sampler) override;
+ void init_execution() override;
+ void deinit_execution() override;
};
} // namespace blender::compositor