Blender Git Loki
Git Commits -> Revision a95e56b
Revision a95e56b by Manuel Castilla (master) August 23, 2021, 14:36 (GMT) |
Compositor: Add sampling methods for full frame Current sampling methods have off by one issues on full frame: - Bilinear sampling do not fully sample bottom and left image border, creating edges. - Single elem buffers are not sampled at all when they should be at least on the borders to smooth edges. - EWA filtering is partially implemented on `ReadBufferOperation`, it needs to be moved to `MemoryBuffer` on full frame. In order to not affect tiled implementation, this commit creates specific sampling methods for full frame needs. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D12164 |
Commit Details:
Full Hash: a95e56b741709f7157a44196091ccad3ec369e5e
Parent Commit: 8f4730e
Lines Changed: +130, -3