code cleanup: compositor - define size for executePixel function output float array
This commit is contained in:
@@ -39,9 +39,9 @@ void SocketProxyOperation::deinitExecution()
|
||||
this->m_inputOperation = NULL;
|
||||
}
|
||||
|
||||
void SocketProxyOperation::executePixel(float *color, float x, float y, PixelSampler sampler)
|
||||
void SocketProxyOperation::executePixel(float output[4], float x, float y, PixelSampler sampler)
|
||||
{
|
||||
if (this->m_inputOperation) {
|
||||
this->m_inputOperation->read(color, x, y, sampler);
|
||||
this->m_inputOperation->read(output, x, y, sampler);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user