From 1681fe6bb041385e5aefb11baa9afd1f614abc5b Mon Sep 17 00:00:00 2001 From: Wang Zhenyu Date: Wed, 20 Sep 2006 09:36:02 +0800 Subject: [PATCH] Revert "fix default tex wrap mode with clamp" oops, we've set border color to all zero, which should give us transparent in RepeatNone case. --- src/i915_exa_render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i915_exa_render.c b/src/i915_exa_render.c index 55d5c946..3bc2c0b9 100644 --- a/src/i915_exa_render.c +++ b/src/i915_exa_render.c @@ -255,7 +255,7 @@ I915TextureSetup(PicturePtr pPict, PixmapPtr pPix, int unit) I830Ptr pI830 = I830PTR(pScrn); CARD32 format, offset, pitch, filter; int w, h, i; - CARD32 wrap_mode = TEXCOORDMODE_CLAMP_EDGE; + CARD32 wrap_mode = TEXCOORDMODE_CLAMP_BORDER; offset = exaGetPixmapOffset(pPix); pitch = exaGetPixmapPitch(pPix);