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/intern/COM_BufferOperation.h')
-rw-r--r--source/blender/compositor/intern/COM_BufferOperation.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/compositor/intern/COM_BufferOperation.h b/source/blender/compositor/intern/COM_BufferOperation.h
index b4cbc0a56b6..4aba3a705dd 100644
--- a/source/blender/compositor/intern/COM_BufferOperation.h
+++ b/source/blender/compositor/intern/COM_BufferOperation.h
@@ -31,11 +31,12 @@ class BufferOperation : public ConstantOperation {
BufferOperation(MemoryBuffer *buffer, DataType data_type);
const float *get_constant_elem() override;
- void *initializeTileData(rcti *rect) override;
- void initExecution() override;
- void deinitExecution() override;
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override;
- void executePixelFiltered(float output[4], float x, float y, float dx[2], float dy[2]) override;
+ void *initialize_tile_data(rcti *rect) override;
+ void init_execution() override;
+ void deinit_execution() override;
+ void execute_pixel_sampled(float output[4], float x, float y, PixelSampler sampler) override;
+ void execute_pixel_filtered(
+ float output[4], float x, float y, float dx[2], float dy[2]) override;
};
} // namespace blender::compositor