summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <anholt@freebsd.org>2006-01-03 22:36:46 +0000
committerEric Anholt <anholt@freebsd.org>2006-01-03 22:36:46 +0000
commitb9c0ae867e1b52186c26841a77745f7f5a0a76dd (patch)
treeff8542da12d480b3e4e75ff2da5ff781c49ac24b
parent601ab861b46a62b0742ffd3e937c4fab129664f0 (diff)
downloadxserver-b9c0ae867e1b52186c26841a77745f7f5a0a76dd.tar.gz
Remove the manual AddFilter for convolution, which I'm pretty sure
shouldn't be necessary due to it already happening from PictureSetDefaultFilters.
-rw-r--r--ChangeLog7
-rw-r--r--hw/xgl/xglpict.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c61903b00..fb6eac337 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2006-01-03 Eric Anholt <anholt@FreeBSD.org>
+ * 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 <anholt@FreeBSD.org>
+
* render/glyph.c: (ResetGlyphPrivates),
(AllocateGlyphPrivateIndex), (AllocateGlyphPrivate),
(SetGlyphScreenPrivateOffsets), (SetGlyphPrivatePointers),
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;
}