Browse Source

st/xorg: fallback until daddy can implement you properly

tags/mesa_7_7_rc1
Zack Rusin 16 years ago
parent
commit
493d599af4
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      src/gallium/state_trackers/xorg/xorg_composite.c

+ 5
- 0
src/gallium/state_trackers/xorg/xorg_composite.c View File

@@ -199,6 +199,11 @@ boolean xorg_composite_accelerated(int op,
op);
}
}
if ((pSrcPicture && pSrcPicture->repeatType == RepeatNone) ||
(pMaskPicture && pMaskPicture->repeatType == RepeatNone)) {
XORG_FALLBACK("RepeatNone is not supported");
}

return TRUE;
}
XORG_FALLBACK("Unsupported composition operation = %d", op);

Loading…
Cancel
Save