uxa/glamor: Let glamor do the GC validation

If we are using GLAMOR, then a tile pixmap or stipple pixmap
may be pure glamor pixmap and thus UXA will not know how to
render to them, and we need to let glamor do the validation.

Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Zhigang Gong 2011-12-27 17:09:17 +08:00 committed by Chris Wilson
parent e8aa9cedbf
commit f4ea732d71
2 changed files with 15 additions and 1 deletions

View File

@ -45,12 +45,14 @@
#define glamor_set_spans_nf(...) FALSE
#define glamor_get_image_nf(...) FALSE
#define glamor_glyphs_nf(...) FALSE
#define glamor_glyph_unrealize(...) ;
#define glamor_glyph_unrealize(...) do { } while(0)
#define glamor_composite_nf(...) FALSE
#define glamor_composite_rects_nf(...) FALSE
#define glamor_trapezoids_nf(...) FALSE
#define glamor_triangles_nf(...) FALSE
#define glamor_add_traps_nf(...) FALSE
#define glamor_create_gc(...) FALSE
#define glamor_validate_gc(...) do { } while(0)
#endif
#endif /* UXA_GLAMOR_H */

View File

@ -38,6 +38,7 @@
#include <X11/fonts/fontstruct.h>
#include "dixfontstr.h"
#include "uxa.h"
#include "uxa-glamor.h"
#if HAS_DEVPRIVATEKEYREC
DevPrivateKeyRec uxa_screen_index;
@ -183,11 +184,21 @@ void uxa_finish_access(DrawablePtr pDrawable, uxa_access_t access)
static void
uxa_validate_gc(GCPtr pGC, unsigned long changes, DrawablePtr pDrawable)
{
uxa_screen_t *uxa_screen = uxa_get_screen(pGC->pScreen);
/* fbValidateGC will do direct access to pixmaps if the tiling has
* changed.
* Preempt fbValidateGC by doing its work and masking the change out, so
* that we can do the Prepare/finish_access.
*/
/* If we are using GLAMOR, then the tile or stipple pixmap
* may be pure GLAMOR pixmap, then we should let the glamor
* to do the validation.
*/
if (uxa_screen->info->flags & UXA_USE_GLAMOR) {
glamor_validate_gc(pGC, changes, pDrawable);
goto set_ops;
}
#ifdef FB_24_32BIT
if ((changes & GCTile) && fbGetRotatedPixmap(pGC)) {
(*pGC->pScreen->DestroyPixmap) (fbGetRotatedPixmap(pGC));
@ -256,6 +267,7 @@ uxa_validate_gc(GCPtr pGC, unsigned long changes, DrawablePtr pDrawable)
fbValidateGC(pGC, changes, pDrawable);
}
set_ops:
pGC->ops = (GCOps *) & uxa_ops;
}