Merge branch 'master' into blender2.8
This commit is contained in:
@@ -171,7 +171,7 @@ bool NodeOperation::determineDependingAreaOfInterest(rcti *input, ReadBufferOper
|
||||
rcti tempOutput;
|
||||
bool first = true;
|
||||
for (int i = 0; i < getNumberOfInputSockets(); i ++) {
|
||||
NodeOperation * inputOperation = this->getInputOperation(i);
|
||||
NodeOperation *inputOperation = this->getInputOperation(i);
|
||||
if (inputOperation && inputOperation->determineDependingAreaOfInterest(input, readOperation, &tempOutput)) {
|
||||
if (first) {
|
||||
output->xmin = tempOutput.xmin;
|
||||
|
@@ -288,7 +288,7 @@ void InverseSearchRadiusOperation::initExecution()
|
||||
|
||||
void *InverseSearchRadiusOperation::initializeTileData(rcti *rect)
|
||||
{
|
||||
MemoryBuffer * data = new MemoryBuffer(COM_DT_COLOR, rect);
|
||||
MemoryBuffer *data = new MemoryBuffer(COM_DT_COLOR, rect);
|
||||
float *buffer = data->getBuffer();
|
||||
int x, y;
|
||||
int width = this->m_inputRadius->getWidth();
|
||||
|
Reference in New Issue
Block a user