diff options
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | src/aux.py | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -11,6 +11,10 @@ Medium priority: Low priority: Add support for temporarily closing DRM connection so that multiple users can run in DRM + Add ramp interpolators: + https://en.wikipedia.org/wiki/Monotone_cubic_interpolation + https://en.wikipedia.org/wiki/Spline_interpolation + https://en.wikipedia.org/wiki/Lanczos_resampling Future stuff: How is it looking on the DirectFB front? @@ -75,7 +75,7 @@ def linearly_interpolate_ramp(r, g, b): # TODO demo and document this return (R, G, B) -def cubicly_interpolate_ramp(r, g, b): # TODO test, demo and document this +def cubicly_interpolate_ramp(r, g, b): # TODO demo and document this ''' Interpolate ramps to the size of the output axes using cubic Hermite spline |