diff options
author | Zack Rusin <[email protected]> | 2009-10-10 05:24:32 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2009-10-13 13:04:00 -0400 |
commit | 1cc1c3a0336d74e518417e2e93e141171a50542b (patch) | |
tree | 64897b431352ee40287d2fd37e454ae656159c69 /src/gallium/state_trackers/xorg/xorg_composite.c | |
parent | 83f4e72009e2ee03ec1175bd3e6e309e605c2bd1 (diff) |
st/xorg: solid fills with masks are supported
gradients are supported, but not enabled by default due to little
testing they got
Diffstat (limited to 'src/gallium/state_trackers/xorg/xorg_composite.c')
-rw-r--r-- | src/gallium/state_trackers/xorg/xorg_composite.c | 7 |
1 files changed, 1 insertions, 6 deletions
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) { |