From b9c0ae867e1b52186c26841a77745f7f5a0a76dd Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 3 Jan 2006 22:36:46 +0000 Subject: [PATCH] Remove the manual AddFilter for convolution, which I'm pretty sure shouldn't be necessary due to it already happening from PictureSetDefaultFilters. --- ChangeLog | 7 +++++++ hw/xgl/xglpict.c | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c61903b00..fb6eac337 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-01-03 Eric Anholt + + * hw/xgl/xglpict.c: (xglPictureInit): + Remove the manual AddFilter for convolution, which I'm pretty sure + shouldn't be necessary due to it already happening from + PictureSetDefaultFilters. + 2006-01-03 Eric Anholt * render/glyph.c: (ResetGlyphPrivates), diff --git a/hw/xgl/xglpict.c b/hw/xgl/xglpict.c index 96f70c478..f005de6d7 100644 --- a/hw/xgl/xglpict.c +++ b/hw/xgl/xglpict.c @@ -459,8 +459,6 @@ xglPictureInit (ScreenPtr pScreen) if (!fbPictureInit (pScreen, pFormats, nformats)) return FALSE; - PictureAddFilter (pScreen, FilterConvolution, miFilterValidateParams); - return TRUE; }