[gegl/samplers] Fix calls to pixel_update_radius() and pixel_update()
- From: Adam Turcotte <aturcotte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/samplers] Fix calls to pixel_update_radius() and pixel_update()
- Date: Thu, 16 Jun 2011 19:03:30 +0000 (UTC)
commit 021ac36cf1a6714d7ab2d6b9ac0a09d48a5b3f77
Author: Adam Turcotte <aturcotte src gnome org>
Date: Thu Jun 16 15:03:23 2011 -0400
Fix calls to pixel_update_radius() and pixel_update()
gegl/buffer/gegl-sampler-lohalo.c | 96 ++++++++++++++++++------------------
1 files changed, 48 insertions(+), 48 deletions(-)
---
diff --git a/gegl/buffer/gegl-sampler-lohalo.c b/gegl/buffer/gegl-sampler-lohalo.c
index 73aa845..e2b242c 100644
--- a/gegl/buffer/gegl-sampler-lohalo.c
+++ b/gegl/buffer/gegl-sampler-lohalo.c
@@ -1979,9 +1979,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 0,
-2,
radius,
@@ -1993,9 +1993,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 1,
-2,
radius,
@@ -2007,9 +2007,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 2,
-2,
radius,
@@ -2021,9 +2021,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
/*
* Second row of the 5x5:
*/
@@ -2038,9 +2038,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
/*
* The central 3x3 block of the 5x5 are always close enough to
* be within radius 2.5, so we don't need triangle_radius to
@@ -2056,9 +2056,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 0,
-1,
c_major_x,
@@ -2069,9 +2069,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 1,
-1,
c_major_x,
@@ -2082,9 +2082,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 2,
-1,
radius,
@@ -2096,9 +2096,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
/*
* Third row:
*/
@@ -2113,9 +2113,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update (-1,
0,
c_major_x,
@@ -2126,9 +2126,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 0,
0,
c_major_x,
@@ -2139,9 +2139,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 1,
0,
c_major_x,
@@ -2152,9 +2152,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 2,
0,
radius,
@@ -2166,9 +2166,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
/*
* Fourth row:
*/
@@ -2183,9 +2183,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update (-1,
1,
c_major_x,
@@ -2196,9 +2196,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 0,
1,
c_major_x,
@@ -2209,9 +2209,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update ( 1,
1,
c_major_x,
@@ -2222,9 +2222,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 2,
1,
radius,
@@ -2236,9 +2236,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
/*
* Fifth row of the 5x5 context_rect:
*/
@@ -2253,9 +2253,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius (-1,
2,
radius,
@@ -2267,9 +2267,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 0,
2,
radius,
@@ -2281,9 +2281,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 1,
2,
radius,
@@ -2295,9 +2295,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
pixel_update_radius ( 2,
2,
radius,
@@ -2309,9 +2309,9 @@ gegl_sampler_lohalo_get ( GeglSampler* restrict self,
y_0,
channels,
row_skip,
- &input_bptr,
+ input_bptr,
&total_weight,
- &ewa_newval);
+ ewa_newval);
const gfloat theta = (gfloat) ( 1. / ellipse_f );
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]