From: Zack Rusin Date: Sat, 10 Oct 2009 09:24:32 +0000 (-0400) Subject: st/xorg: solid fills with masks are supported X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1cc1c3a0336d74e518417e2e93e141171a50542b;p=mesa.git st/xorg: solid fills with masks are supported gradients are supported, but not enabled by default due to little testing they got --- diff --git a/src/gallium/state_trackers/xorg/xorg_composite.c b/src/gallium/state_trackers/xorg/xorg_composite.c index 90283fe6af5..6871625605f 100644 --- a/src/gallium/state_trackers/xorg/xorg_composite.c +++ b/src/gallium/state_trackers/xorg/xorg_composite.c @@ -125,13 +125,8 @@ boolean xorg_composite_accelerated(int op, sizeof(accelerated_ops)/sizeof(struct acceleration_info); if (pSrcPicture->pSourcePict) { - /* Gradients not yet supported */ if (pSrcPicture->pSourcePict->type != SourcePictTypeSolidFill) - XORG_FALLBACK("gradients not yet supported"); - - /* Solid source with mask not yet handled properly */ - if (pMaskPicture) - XORG_FALLBACK("solid source with mask not yet handled properly"); + XORG_FALLBACK("gradients not enabled (haven't been well tested)"); } for (i = 0; i < accel_ops_count; ++i) {