st/xorg: solid fills with masks are supported

gradients are supported, but not enabled by default due to little
testing they got
This commit is contained in:
Zack Rusin 2009-10-10 05:24:32 -04:00
parent 83f4e72009
commit 1cc1c3a033
1 changed files with 1 additions and 6 deletions

View File

@ -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) {