Cleanup: remove unneeded method.

size can be accessed via instance attribute.
This commit is contained in:
Jeroen Bakker 2021-03-30 14:25:14 +02:00
parent 094c950915
commit 88b5d7f5f3
2 changed files with 1 additions and 9 deletions

View File

@ -131,7 +131,7 @@ bool NodeOperation::determineDependingAreaOfInterest(rcti *input,
ReadBufferOperation *readOperation,
rcti *output)
{
if (isInputOperation()) {
if (m_inputs.size() == 0) {
BLI_rcti_init(output, input->xmin, input->xmax, input->ymin, input->ymax);
return false;
}

View File

@ -311,14 +311,6 @@ class NodeOperation {
NodeOperationOutput *getOutputSocket(unsigned int index = 0);
NodeOperationInput *getInputSocket(unsigned int index);
/** Check if this is an input operation
* An input operation is an operation that only has output sockets and no input sockets
*/
bool isInputOperation() const
{
return m_inputs.is_empty();
}
/**
* \brief determine the resolution of this node
* \note this method will not set the resolution, this is the responsibility of the caller