[Pixman] [PATCH pixman 10/15] pixman-filter: don't range-check impulse filter
Bill Spitzak
spitzak at gmail.com
Wed Apr 29 12:04:58 PDT 2015
The other filters don't range-check, so there is no need for this
one to either. It is only called with x==0.
---
pixman/pixman-filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pixman/pixman-filter.c b/pixman/pixman-filter.c
index fbc657d..00126cd 100644
--- a/pixman/pixman-filter.c
+++ b/pixman/pixman-filter.c
@@ -45,7 +45,7 @@ typedef struct
static double
impulse_kernel (double x)
{
- return (x == 0.0)? 1.0 : 0.0;
+ return 1;
}
static double
--
1.7.9.5
More information about the Pixman
mailing list