Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2007-07-10 23:34:41 +0400
committerKent Mein <mein@cs.umn.edu>2007-07-10 23:34:41 +0400
commit9f3670ce9f689ca4d864611217364d00a924eb1e (patch)
tree9a84692e6b02797a3f17034cc32c5fef98b0017b /source/blender/imbuf/intern/imageprocess.c
parent9298357670f5a1acc5515a771276fa444245aeb3 (diff)
Removed comments with non ascii chars...
I left the link that points to documentation on the web so not really needed anyway. Kent
Diffstat (limited to 'source/blender/imbuf/intern/imageprocess.c')
-rw-r--r--source/blender/imbuf/intern/imageprocess.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/source/blender/imbuf/intern/imageprocess.c b/source/blender/imbuf/intern/imageprocess.c
index 855c80c820d..c08b2c4d9ce 100644
--- a/source/blender/imbuf/intern/imageprocess.c
+++ b/source/blender/imbuf/intern/imageprocess.c
@@ -85,17 +85,8 @@ void IMB_convert_rgba_to_abgr(struct ImBuf *ibuf)
* http://wiki.blender.org/index.php/User:Damiles#Interpolations_Algorithms
***************************************************************************/
-/* BICUBIC */
-
-/* Bicubic formula:
-*
-* A’(px,py) = Σn=-1..2Σm=-1..2 A(i+n,j+m)·P(n-a)·P(b-m)
-* with: P(k) = 1/6(C(k+2)^3-4C(k+1)^3+6C(k)^3-4C(k-1)^3)
-* and C(k) = max(0, k)
-*
-* Where A= in and A'=out
-*
-* More info: http://wiki.blender.org/index.php/User:Damiles#Bicubic_pixel_interpolation
+/* BICUBIC Interpolation functions */
+/* More info: http://wiki.blender.org/index.php/User:Damiles#Bicubic_pixel_interpolation
*/
/* function assumes out to be zero'ed, only does RGBA */
static float P(float k){