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 <jeroen@blender.org>2021-03-31 15:47:38 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-31 15:47:38 +0300
commit5f787b290c771395fbf2bfd18d2c8c3686e73118 (patch)
treefcaf757d7c30314ffdc1a6893394f18cd6bea889
parentbc837ad14e6b4a2c0afc1ce062d6d8f587dd242e (diff)
Cleanup: Removed Unused Definition.
-rw-r--r--source/blender/compositor/intern/COM_ExecutionGroup.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.h b/source/blender/compositor/intern/COM_ExecutionGroup.h
index c345724d4c9..ff5c1698a75 100644
--- a/source/blender/compositor/intern/COM_ExecutionGroup.h
+++ b/source/blender/compositor/intern/COM_ExecutionGroup.h
@@ -168,17 +168,7 @@ class ExecutionGroup {
bool can_contain(NodeOperation &operation);
/**
- * \brief calculate the actual chunk size of this execution group.
- * \note A chunk size is an unsigned int that is both the height and width of a chunk.
- * \note The chunk size will not be stored in the chunkSize field. This needs to be done
- * \note by the calling method.
- */
- unsigned int determineChunkSize();
-
- /**
* \brief Determine the rect (minx, maxx, miny, maxy) of a chunk at a position.
- * \note Only gives useful results after the determination of the chunksize
- * \see determineChunkSize()
*/
void determineChunkRect(rcti *r_rect,
const unsigned int xChunk,
@@ -373,8 +363,6 @@ class ExecutionGroup {
/**
* \brief Determine the rect (minx, maxx, miny, maxy) of a chunk.
- * \note Only gives useful results after the determination of the chunksize
- * \see determineChunkSize()
*/
void determineChunkRect(rcti *r_rect, const unsigned int chunkNumber) const;