From 9987a8fca727d117b1d94587144d704be0b235dd Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 13 Jul 2012 12:24:42 +0000 Subject: Removed parameter from executePixel and initializeTileData. --- source/blender/compositor/operations/COM_SplitViewerOperation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor/operations/COM_SplitViewerOperation.cpp') diff --git a/source/blender/compositor/operations/COM_SplitViewerOperation.cpp b/source/blender/compositor/operations/COM_SplitViewerOperation.cpp index 6236a666260..80de4e71fce 100644 --- a/source/blender/compositor/operations/COM_SplitViewerOperation.cpp +++ b/source/blender/compositor/operations/COM_SplitViewerOperation.cpp @@ -80,10 +80,10 @@ void SplitViewerOperation::executeRegion(rcti *rect, unsigned int tileNumber) float srgb[4]; image1 = this->m_xSplit ? x > perc : y > perc; if (image1) { - this->m_image1Input->read(&(buffer[offset]), x, y, COM_PS_NEAREST, NULL); + this->m_image1Input->read(&(buffer[offset]), x, y, COM_PS_NEAREST); } else { - this->m_image2Input->read(&(buffer[offset]), x, y, COM_PS_NEAREST, NULL); + this->m_image2Input->read(&(buffer[offset]), x, y, COM_PS_NEAREST); } /// @todo: linear conversion only when scene color management is selected, also check predivide. if (this->m_doColorManagement) { -- cgit v1.2.3