From 578f98d7ad31d7f1630f674253aeb4872502b6da Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 18 Feb 2016 01:28:41 +1100 Subject: Fix T47452: Translate-node seams w/ subpixel offset --- source/blender/compositor/intern/COM_MemoryBuffer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/compositor/intern') diff --git a/source/blender/compositor/intern/COM_MemoryBuffer.h b/source/blender/compositor/intern/COM_MemoryBuffer.h index de8c14e1a66..f9e2dd87d05 100644 --- a/source/blender/compositor/intern/COM_MemoryBuffer.h +++ b/source/blender/compositor/intern/COM_MemoryBuffer.h @@ -259,7 +259,9 @@ public: float u = x; float v = y; this->wrap_pixel(u, v, extend_x, extend_y); - BLI_bilinear_interpolation_fl(this->m_buffer, result, this->m_width, this->m_height, this->m_num_channels, u, v); + BLI_bilinear_interpolation_wrap_fl( + this->m_buffer, result, this->m_width, this->m_height, this->m_num_channels, u, v, + extend_x == COM_MB_REPEAT, extend_y == COM_MB_REPEAT); } void readEWA(float *result, const float uv[2], const float derivatives[2][2]); -- cgit v1.2.3