Remove .gitignore do nothing is ignored.
[synfig.git] / ETL / trunk / ETL / _gaussian.h
index f60b887..781b1ab 100644 (file)
@@ -1,7 +1,7 @@
 /*! ========================================================================
 ** Extended Template Library
 ** Gaussian Blur Template Implementation
-** $Id: _gaussian.h,v 1.1.1.1 2005/01/04 01:31:47 darco Exp $
+** $Id$
 **
 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
 **
@@ -24,8 +24,8 @@
 
 /* === S T A R T =========================================================== */
 
-#ifndef __ETL_GAUSSIAN_H
-#define __ETL_GAUSSIAN_H
+#ifndef __ETL__GAUSSIAN_H
+#define __ETL__GAUSSIAN_H
 
 /* === H E A D E R S ======================================================= */
 
@@ -52,7 +52,7 @@ typename T::pointer SC3)
 
        //typename T::iterator_x iter;
 
-       // Setup the row bufers
+       // Setup the row buffers
        for(x=0;x<w;x++)SC0[x+2]=pen.x()[x]*24;
        memset(SC1,0,(w+2)*sizeof(typename T::value_type));
        memset(SC2,0,(w+2)*sizeof(typename T::value_type));
@@ -144,7 +144,7 @@ gaussian_blur_3x3(T pen,int w, int h)
        typename T::pointer SC0=new typename T::value_type[w+1];
        typename T::pointer SC1=new typename T::value_type[w+1];
 
-       // Setup the row bufers
+       // Setup the row buffers
        for(x=0;x<w;x++)SC0[x+1]=pen.x()[x]*4;
        memset(SC1,0,(w+1)*sizeof(typename T::value_type));
 
@@ -209,7 +209,7 @@ gaussian_blur_3(I begin, I end, bool endpts = true)
                if(iter!=begin && ( endpts || (prev != begin) ))
                        *prev=(Tmp1)/4;
        }
-       
+
        if(endpts)
        {
                Tmp1=*prev;