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:
authorManuel Castilla <manzanillawork@gmail.com>2021-05-20 17:38:26 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-05-20 17:38:26 +0300
commitce1dc77f3240185666fce26c71bca5d917e79c70 (patch)
tree672d7d2b31c06cb2c2d22061c0d29c29505005fa /source/blender/compositor/intern/COM_NodeOperation.h
parente7838d7b817398cd55429f7b656284aa9be3db39 (diff)
Improve get_area_of_interest doc comments and signature
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeOperation.h')
-rw-r--r--source/blender/compositor/intern/COM_NodeOperation.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/compositor/intern/COM_NodeOperation.h b/source/blender/compositor/intern/COM_NodeOperation.h
index 6f332d22cc1..8e007e0f747 100644
--- a/source/blender/compositor/intern/COM_NodeOperation.h
+++ b/source/blender/compositor/intern/COM_NodeOperation.h
@@ -574,8 +574,10 @@ class NodeOperation {
{
}
- /* TODO: See if it's possible to use parameter overloading (input_id for example). */
- virtual void get_area_of_interest(int input_idx, const rcti &output_rect, rcti &r_input_rect);
+ /**
+ * Get input operation area being read by this operation on rendering given output area.
+ */
+ virtual void get_area_of_interest(int input_op_idx, const rcti &output_area, rcti &r_input_area);
/** \} */