Cleanup: Removed Unused Definition.

This commit is contained in:
Jeroen Bakker 2021-03-31 14:47:38 +02:00
parent bc837ad14e
commit 5f787b290c
1 changed files with 0 additions and 12 deletions

View File

@ -167,18 +167,8 @@ 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;