#ifndef XORG_EXA_H #define XORG_EXA_H #include "xorg_tracker.h" struct cso_context; struct exa_context { ExaDriverPtr pExa; struct pipe_context *ctx; struct pipe_screen *scrn; struct cso_context *cso; }; struct exa_pixmap_priv { int flags; int tex_flags; struct pipe_texture *tex; unsigned int color; struct pipe_surface *src_surf; /* for copies */ struct pipe_transfer *map_transfer; unsigned map_count; }; #endif